forked from median-dxz/seerh5-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
39
40
41
42
43
{
"name": "sea-project",
"private": true,
"type": "module",
"license": "MPL-2.0",
"repository": {
"url": "https://github.com/median-dxz/seerh5-assistant.git"
},
"author": {
"name": "median-dxz",
"url": "https://median-dxz.xyz/"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "conc pnpm:core:watch pnpm:launcher:dev",
"server:run": "pnpm -C ./packages/server run start",
"launcher:dev": "pnpm -C ./packages/launcher run dev",
"core:watch": "pnpm --filter \"@sea/core\" run watch",
"core:build": "pnpm --filter \"@sea/core\" run build",
"workspace:sync": "node ./scripts/sync.js",
"release:core": "node ./scripts/release.js",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{ts,tsx,json,css,md}": "prettier --write"
}
}