-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "lox-wasm",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"watch": "rsw watch",
"rsw": "rsw",
"build-gh": "rsw build && npm run zig:build && npm run fe:build -- --base=/lox-v-lox/",
"build": "rsw build && npm run zig:build && npm run fe:build",
"fe:build": "vue-tsc --noEmit && vite build",
"zig:build": "./install-lox-zig.sh",
"preview": "vite preview",
"lint": "vue-tsc --noEmit && prettier --check src && eslint --ext .js,.vue,.ts src",
"fix": "prettier --write src && npm run lint -- --fix"
},
"dependencies": {
"@codemirror/lang-java": "^6.0.0",
"@codemirror/theme-one-dark": "^6.1.0",
"codemirror": "^6.0.1",
"vue": "^3.2.34",
"vue-codemirror": "^6.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitejs/plugin-vue": "^2.3.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.6.0",
"prettier": "^2.7.1",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-rsw": "^2.0.5",
"vue-tsc": "^0.34.15",
"wasm-pack": "^0.10.2"
}
}