-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 862 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 862 Bytes
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
{
"name": "lowcoder-plugin-demo",
"version": "0.0.4",
"type": "module",
"license": "MIT",
"dependencies": {
"lowcoder-core": "^0.0.1",
"lowcoder-design": "^0.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.com"
},
"lowcoder": {
"description": "",
"comps": {
"hello_world": {
"name": "Hello World",
"icon": "./icons/demo-icon.png"
},
"counter": {
"name": "Counter",
"icon": "./icons/demo-icon.png"
}
}
},
"scripts": {
"start": "vite",
"build": "lowcoder-cli build"
},
"devDependencies": {
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"lowcoder-cli": "workspace:^",
"lowcoder-sdk": "workspace:^",
"typescript": "4.8.4",
"vite": "^4.5.10"
}
}