-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·80 lines (80 loc) · 1.87 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
{
"name": "vue3-amis-custom-widget",
"version": "1.0.0",
"description": "amis自定义组件模板(vue3.0技术栈)",
"keywords": [
"自定义组件模板",
"vue3.0技术栈",
"amis自定义组件",
"amis-editor自定义插件",
"图表自定义组件"
],
"author": "wibetter",
"license": "MIT",
"scripts": {
"dev": "amis dev",
"preview": "amis preview",
"linkDebug": "amis linkDebug",
"build2lib": "amis build2lib",
"format": "prettier --write \"src/**/**/*.{js,jsx,ts,tsx,vue,scss,json}\""
},
"files": [
"dist/*"
],
"framework": "vue3",
"amis-widgets": [
{
"type": "uni-area-chart",
"framework": "vue3",
"description": "折线区域图",
"entry": "/dist/uniAreaRenderer.umd",
"files": [
"/dist/uniAreaRenderer.css"
],
"editorPlugin": {
"pluginEntry": "/dist/uniAreaPlugin.umd",
"tag": [
"图表组件"
],
"sort": 100
}
}
],
"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/vue3-amis-custom-widget.git"
},
"bugs": {
"url": "https://github.com/aisuda/vue3-amis-custom-widget/issues"
},
"dependencies": {
"vue3-amis-widget": "^3.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"@qiun/ucharts": "^2.4.3-20220505",
"vue": "^3.2.37"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^9.1.1",
"@wibetter/amis-widget-cli": "^3.1.10",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5"
},
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.4.1"
}
}