forked from slint-ui/slint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 2.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"//": "cSpell: ignore lumino dragdrop frsource ",
"name": "slintpad",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist pkg && npx vite build",
"build:wasm_lsp": "wasm-pack build --dev --target web ../lsp -- --no-default-features --features preview-api",
"build:wasm_lsp-release": "wasm-pack build --release --target web ../lsp -- --no-default-features --features preview-api",
"build:wasm_preview": "wasm-pack build --dev --target web ../../api/wasm-interpreter -- --features console_error_panic_hook,highlight",
"build:wasm_preview-release": "wasm-pack build --release --target web ../../api/wasm-interpreter -- --features console_error_panic_hook,highlight",
"lint": "eslint src",
"start": "rimraf dist && npm run build:wasm_lsp && npm run build:wasm_preview && npm run start:vite",
"start:vite": "vite --open",
"start:vite_cypress": "vite --port=3001",
"start:vite_cypress-preview": "vite preview --port=3001",
"syntax_check": "tsc --build --force",
"test:cypress_run-chromium": "cypress run --browser=chromium --e2e",
"test:cypress_open-chromium": "cypress open --browser=chromium --e2e",
"test:cypress_run-ff": "cypress run --browser=firefox --e2e",
"test:cypress_open-ff": "cypress open --browser=firefox --e2e"
},
"keywords": [],
"author": "",
"devDependencies": {
"@frsource/cypress-plugin-visual-regression-diff": "^3.2.8",
"@lumino/default-theme": "^2.0.0-beta.1",
"@lumino/dragdrop": "^2.0.0-beta.1",
"@lumino/widgets": "^2.0.0-beta.1",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"cypress": "^12.4.0",
"eslint": "^8.32.0",
"monaco-editor": "0.34.1",
"monaco-languageclient": "4.0.3",
"path-browserify": "^1.0.1",
"rimraf": "^4.1.2",
"typescript": "^4.9.4",
"vite": "^4.1.1",
"vscode-languageserver": "8.0.2",
"vscode-languageserver-protocol": "3.17.2"
}
}