-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.01 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.01 KB
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
46
47
48
49
50
51
{
"name": "chronocat-workspace",
"description": "模块化的 Satori 框架",
"version": "0.0.0",
"packageManager": "yarn@4.7.0",
"private": true,
"license": "UNLICENSED",
"workspaces": [
"external/*",
"external/*/external/*",
"external/*/external/*/packages/*",
"external/*/packages/*",
"packages/*"
],
"scripts": {
"clean": "node -r esbuild-register scripts/clean.cts",
"builder": "yarn workspace @chronocat/builder builder",
"build": "concurrently -n red \"yarn workspace @chronocat/red build\" && concurrently -n shell \"yarn workspace @chronocat/shell build\" && concurrently -n api,event,media \"yarn workspace @chronocat/engine-chronocat-api build\" \"yarn workspace @chronocat/engine-chronocat-event build\" \"yarn workspace @chronocat/engine-media build\" && concurrently -n llqqnt,iife \"yarn workspace @chronocat/plugin-llqqnt build\" \"yarn workspace @chronocat/plugin-iife build\" && concurrently -n packengine,packllqqntengine yarn:packengine yarn:packllqqntengine",
"packengine": "node -r esbuild-register scripts/packengine.cts",
"packllqqntengine": "node -r esbuild-register scripts/packllqqntengine.cts",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"test": "jest"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.23.0",
"@tsconfig/strictest": "^2.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"concurrently": "^9.1.2",
"esbuild": "^0.19.2",
"esbuild-register": "^3.5.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "~5.1.0",
"typescript-eslint": "^8.28.0"
}
}