forked from alibaba/lowcode-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 917 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 917 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
{
"name": "<%- name %>",
"author": "<%- author %>",
"version": "1.0.0",
"description": "<%- description %>",
"main": "lib/index.js",
"module": "es/index.js",
"README": "README.md",
"scripts": {
"start": "npm run dev",
"dev": "build-scripts start --config build.js",
"build": "build-scripts build --config build.js",
"prepublishOnly": "npm run build",
"beta": "npm publish --tag beta",
"pub": "npm publish"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@alilc/lowcode-types": "^1.1.1"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@alib/build-scripts": "^0.1.32",
"@types/react": "^16.0.3",
"build-plugin-fusion": "^0.1.19",
"@alilc/build-plugin-alt": "^1.0.0"
},
"license": "MIT",
"lcMeta": {
"pluginName": "<%- componentName %>"
}
}