-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·100 lines (100 loc) · 2.27 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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "vue2-aipage-custom-widget",
"version": "1.1.0",
"description": "aipage-editor H5自定义组件模板(vue2、react)",
"keywords": [
"自定义组件模板",
"aipage-editor自定义组件"
],
"author": "fex",
"license": "MIT",
"scripts": {
"preview": "amis preview",
"dev": "amis dev",
"devDebug": "amis dev",
"linkDebug": "amis linkDebug",
"build2lib": "amis build2lib",
"format": "prettier --write \"src/**/**/*.{js,jsx,ts,tsx,vue,scss,json}\""
},
"files": [
"dist/*"
],
"framework": "mulStack",
"aipage-widgets": [
{
"type": "react-info-card",
"framework": "react",
"description": "react版信息展示卡片",
"entry": "/dist/reactInfoCard.umd",
"files": [
"/dist/reactInfoCard.css"
],
"editorPlugin": {
"pluginEntry": "/dist/reactInfoCardPlugin.umd",
"tag": [
"自定义组件"
],
"sort": 100,
"device": [
"mobile",
"pc"
]
}
},
{
"type": "vue-info-card",
"description": "vue2.0版信息展示卡片",
"framework": "vue2",
"entry": "/dist/infoCard.umd",
"files": [
"/dist/infoCard.css"
],
"editorPlugin": {
"pluginEntry": "/dist/infoCardPlugin.umd",
"tag": [
"自定义组件"
],
"sort": 100,
"device": [
"mobile",
"pc"
]
}
}
],
"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://[email protected]:aisuda/vue2-aipage-custom-widget.git"
},
"bugs": {
"url": "https://github.com/aisuda/vue2-aipage-custom-widget/issues"
},
"dependencies": {
"aipage-widget": "^1.2.5",
"react": "^16.8.6",
"vue": "^2.6.14"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^9.1.1",
"amis-widget-cli": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5"
},
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.4.1"
}
}