-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "@momoyu-ink/framework",
"version": "0.1.0",
"description": "Base library of Moyu Engine",
"main": "src/index.tsx",
"scripts": {
"dev": "rspack dev",
"typecheck": "tsc --noEmit",
"build": "rspack build",
"generate:schema": "moyu schema",
"engine:update": "moyu update",
"engine:native": "moyu run --native",
"engine:web": "moyu run --web",
"engine:pack": "moyu pack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Icemic <bingfeng.web@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=22.20"
},
"dependencies": {
"@momoyu-ink/kit": "^0.5.5",
"lodash.debounce": "^4.0.8",
"react": "19.2.1",
"react-error-boundary": "^6.0.0",
"valtio": "^2.1.7",
"zod": "^4.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@momoyu-ink/cli": "^0.3.0",
"@rspack/cli": "^1.7.11",
"@rspack/core": "^1.7.11",
"@rspack/plugin-react-refresh": "^1.6.2",
"@types/lodash.debounce": "^4.0.9",
"@types/node": ">=24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-refresh": "^0.14.7",
"react-dom": "^19.2.1",
"react-refresh": "^0.18.0",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.5.1"
}