-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "dolphindb-vscode",
"type": "module",
"version": "3.0.200",
"engines": {
"vscode": ">=1.68.0"
},
"scripts": {
"dev": "node ./dev.ts",
"build": "node ./build.ts",
"scan": "i18n-scan --input \"**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\"",
"fix": "eslint --fix \"**/*.{ts,tsx}\""
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/vscode": "^1.96.0",
"@types/ws": "^8.5.13",
"eslint": "^9.17.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@ant-design/icons": "^5.5.2",
"@ant-design/plots": "1.2.5",
"@vscode/debugadapter": "^1.68.0",
"@vscode/debugprotocol": "^1.68.0",
"antd": "^5.22.6",
"dayjs": "^1.11.13",
"dolphindb": "^3.0.211",
"koa": "^2.15.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-object-model": "^1.2.21",
"tslib": "^2.8.1",
"ws": "^8.18.0",
"xshell": "^1.1.15"
},
"pnpm": {
"patchedDependencies": {
"koa@2.15.3": "patches/koa@2.15.3.patch"
}
}
}