-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2 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
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
{
"name": "whistle.devtool",
"version": "0.0.11",
"description": "让whistle调试功能更加强大的插件",
"homepage": "https://github.com/fyhhub/whistle.devtool",
"license": "MIT",
"scripts": {
"dev:web": "rsbuild build --watch --config ./client/rsbuild.config.ts",
"dev:sdk": "rsbuild build --config ./client/rsbuild.config.sdk.ts",
"dev:w2": "npm-run-all --parallel server:run server:lack server:watch",
"server:watch": "tsc -w",
"server:run": "w2 run",
"server:lack": "lack watch"
},
"files": [
"app",
"dist",
"client-dist",
"sdk-dist",
"index.js",
"_rules.txt",
"_values.txt",
"public"
],
"devDependencies": {
"@babel/runtime": "^7.24.6",
"@rsbuild/core": "^0.6.15",
"@rsbuild/plugin-react": "^0.6.15",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.5",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"lack": "^1.3.14",
"less": "^4.1.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.4.2"
},
"whistleConfig": {
"inspectorTabs": {
"priority": 1,
"page": "client-dist/index.html",
"name": "Preview"
},
"networkMenus": [
{
"name": "分享",
"page": "public/shared.html",
"requiredTreeNode": true
},
{
"name": "分享记录",
"page": "public/shared-record.html",
"requiredTreeNode": true
}
]
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@uiw/react-json-view": "2.0.0-alpha.24",
"antd": "^5.17.3",
"js-base64": "^3.7.7",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-onerror": "^4.1.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-websocket": "^7.0.0",
"koa2-cors": "^2.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^9.0.1",
"ws": "^8.17.0"
}
}