-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.04 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.04 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@dao3fun/react-ui",
"version": "0.4.1",
"type": "module",
"author": {
"name": "神岛实验室",
"url": "https://box3lab.com/"
},
"contributors": [
"冷鱼闲风"
],
"description": "适用于神岛的 React UI 框架",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://gitee.com/box3lab/react-ui.git"
},
"bugs": {
"url": "https://gitee.com/box3lab/react-ui/issues"
},
"homepage": "https://docs.box3lab.com/arenapro/zh/react/",
"scripts": {
"eslint:fix": "eslint --fix",
"prettier:write": "prettier . --write",
"tsc:client": "tsc -p client/tsconfig.json",
"tsc:check:client": "tsc -noEmit -p client/tsconfig.json",
"dev:client": "cross-env VITE_BUILD_TARGET=client vite build --mode development --watch",
"build:client": "cross-env VITE_BUILD_TARGET=client vite build --mode production",
"debug:client": "cross-env VITE_BUILD_TARGET=client vite build --mode debug",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^25.0.2",
"@types/react": "18.3.1",
"@types/react-reconciler": "0.32.3",
"ajv": "^8.17.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vite": "^5.4.21",
"vite-plugin-arenapro-script": "^0.2.8",
"vite-plugin-checker": "^0.11.0",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"react-reconciler": "0.29.2"
},
"dependencies": {
"react": "18.3.1"
},
"exports": {
".": {
"import": "./dist/elements.js",
"types": "./dist/types/elements/index.d.ts"
},
"./dom": {
"import": "./dist/renderer.js",
"types": "./dist/types/renderer.d.ts"
},
"./hooks": {
"import": "./dist/hooks.js",
"types": "./dist/types/hooks/index.d.ts"
}
},
"keywords": [
"神奇代码岛",
"dao3fun",
"box3lab",
"arenapro",
"react"
],
"files": [
"dist/**/*"
]
}