-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.38 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.38 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@rsdoctor/components",
"version": "1.5.8",
"license": "MIT",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/rsdoctor",
"directory": "packages/components"
},
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build -w",
"test": "rstest run"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./elements": {
"types": "./dist/components/index.d.ts",
"default": "./dist/components/index.mjs"
},
"./pages": {
"types": "./dist/pages/index.d.ts",
"default": "./dist/pages/index.mjs"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.mjs"
},
"./i18n": {
"types": "./dist/utils/i18n/index.d.ts",
"default": "./dist/utils/i18n/index.mjs"
},
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.mjs"
}
},
"devDependencies": {
"@rsbuild/plugin-check-syntax": "1.6.1",
"@rsbuild/plugin-react": "^1.4.6",
"@rsbuild/plugin-sass": "^1.5.1",
"@rsbuild/plugin-svgr": "^1.3.1",
"@types/node": "^22.8.1",
"@types/path-browserify": "1.0.3",
"@types/react": "^18.3.28",
"@types/react-highlight-words": "^0.20.1",
"@types/url-parse": "1.4.11",
"react": "18.3.1",
"react-router-dom": "6.30.3",
"typescript": "^5.9.2"
},
"dependencies": {
"@ant-design/icons": "5.6.1",
"@monaco-editor/react": "4.7.0",
"@rsdoctor/graph": "workspace:*",
"@rsdoctor/types": "workspace:*",
"@rsdoctor/utils": "workspace:*",
"ansi-to-react": "6.2.6",
"antd": "5.19.1",
"clsx": "^2.1.1",
"dayjs": "1.11.20",
"echarts": "^5.6.0",
"echarts-for-react": "^3.0.6",
"es-toolkit": "^1.45.1",
"i18next": "22.0.4",
"monaco-editor": "0.49.0",
"path-browserify": "1.0.1",
"rc-dialog": "9.1.0",
"rc-tree": "5.7.2",
"react-highlight-words": "^0.21.0",
"react-hyper-tree": "0.3.12",
"react-i18next": "12.0.0",
"react-json-view": "1.21.3",
"react-markdown": "^9.1.0",
"socket.io-client": "4.8.1",
"url-parse": "1.5.10"
},
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}