-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
36 lines (36 loc) · 1.03 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
{
"private": true,
"name": "root",
"version": "0.0.1",
"scripts": {
"lint": "lerna exec --ignore @mantou/nes -- tsc --noEmit && eslint . --ext .ts,.js",
"release": "lerna version",
"build:nes": "wasm-pack build --out-dir ../nes-pkg --target web --scope mantou packages/nes",
"publish:nes": "./scripts/nes-pkg.mjs",
"publish:nes:test": "./scripts/nes-pkg.mjs --test",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lerna": "^6.5.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-plugin-glsl": "^0.0.10",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"workspaces": [
"games/*",
"packages/*"
]
}