-
Notifications
You must be signed in to change notification settings - Fork 303
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "lowcoder-cli",
"description": "CLI tool used to start build publish lowcoder components",
"version": "0.0.30",
"license": "MIT",
"bin": "./index.js",
"type": "module",
"exports": {
".": {
"import": "./index.js",
"require": "./index.js"
},
"./config/vite.config": {
"import": "./config/vite.config.js",
"require": "./config/vite.config.js"
},
"./client": {
"types": "./client.d.ts"
},
"./actions/init.js": {
"import": "./actions/init.js",
"require": "./actions/init.js"
}
},
"dependencies": {
"@vitejs/plugin-react": "^2.2.0",
"axios": "^1.7.4",
"chalk": "4",
"commander": "^9.4.1",
"cross-spawn": "^7.0.3",
"fs-extra": "^10.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-json-view": "^1.21.3",
"rollup-plugin-external-globals": "^0.7.1",
"vite": "^4.5.5",
"vite-plugin-css-injected-by-js": "^2.1.1",
"vite-plugin-svgr": "^2.2.2"
},
"devDependencies": {
"typescript": "^4.8.4"
},
"peerDependencies": {
"lowcoder-sdk": "*"
},
"keywords": [
"lowcoder"
]
}