-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
executable file
·87 lines (87 loc) · 2.01 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
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
{
"name": "amis-widget-cli",
"version": "3.2.9",
"description": "前端脚手架:amis自定义组件开发工具,支持vue2.0技术栈。",
"keywords": [
"amis自定义组件",
"自定义组件开发工具"
],
"author": "fex",
"license": "MIT",
"bin": {
"amis": "./bin/amis.js"
},
"main": "src/module/main.js",
"scripts": {
"amis": "amis",
"dev": "node ./test/demo.js",
"format": "prettier --write \"src/aipage/**/**/*.{js,jsx,vue,tsx,ts,scss,less,json}\"",
"publish2local": "sh publish-local.sh"
},
"files": [
"bin/*",
"src/*",
"test/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/**/*.{js,jsx,ts,tsx,vue,scss,json}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://git@github.com:aisuda/amis-widget-cli.git"
},
"bugs": {
"url": "https://github.com/aisuda/amis-widget-cli/issues"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"amis": "^3.1.1",
"amis-core": "^3.1.1",
"amis-formula": "^3.1.1",
"amis-ui": "^3.1.1",
"amis-editor": "^5.4.1",
"amis-editor-core": "^5.4.1",
"aipage-editor": "^2.1.26",
"react-router-dom": "5.0.1",
"akfun": "^3.2.21",
"axios": "^0.24.0",
"classnames": "^2.3.2",
"chalk": "^4.0.0",
"deepmerge": "^4.2.2",
"figlet": "^1.2.0",
"fs-extra": "^10.1.0",
"inquirer": "^7.3.3",
"monaco-editor-webpack-plugin": "6.0.0",
"ora": "^4.0.4",
"webpack-sources": "^3.2.3",
"yargs": "^12.0.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^9.1.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5"
},
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.4.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8",
"iOS >= 8",
"Firefox >= 20",
"Android > 4.4"
]
}