-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·93 lines (93 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·93 lines (93 loc) · 2.31 KB
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
{
"name": "quick-custom-widget-template",
"version": "1.0.3",
"description": "aipage-editor自定义组件模板,quickapp版自定义组件,用于开发快应用自定义组件。",
"keywords": [
"自定义组件注册器",
"quickapp自定义组件注册器",
"aipage-editor自定义组件",
"aipage-editor自定义插件"
],
"author": "wibetter",
"scripts": {
"preview": "hap server --watch",
"dev": "amis dev",
"devDebug": "amis dev",
"build": "hap build",
"preview:h5": "amis preview",
"linkDebug": "amis linkDebug",
"build2lib": "amis build2lib",
"format": "prettier --write \"src/**/**/*.{js,jsx,ts,tsx,vue,scss,json}\""
},
"files": [
"web/*",
"src/components/*"
],
"aipage-widgets": [
{
"type": "quick-info-card",
"framework": "vue3",
"description": "快应用版信息展示卡片",
"entry": "/web/renderer.umd",
"files": [
"/web/renderer.css"
],
"editorPlugin": {
"pluginEntry": "/web/plugin.umd",
"tag": [
"快应用组件"
],
"sort": 100,
"device": [
"mobile",
"quickapp",
"quickapp-card"
]
}
},
{
"type": "quick-info-card",
"framework": "quickapp",
"entry": "/src/components/info-card"
}
],
"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/quick-custom-widget-template.git"
},
"bugs": {
"url": "https://github.com/aisuda/quick-custom-widget-template/issues"
},
"dependencies": {
"vue": "^3.2.33",
"vue3-aipage-widget": "^1.2.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^9.1.1",
"@types/quickapp": "npm:quickapp-interface@^1.0.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^17.0.13",
"@wibetter/amis-widget-cli": "^3.1.0",
"hap-toolkit": "^1.9.10",
"husky": "^4.2.5",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5"
},
"browserslist": [
"chrome 65"
]
}