-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.6 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
{
"name": "mpvue-snippets",
"displayName": "mpvue snippets",
"description": "mpvue 兼容的 微信小程序:API 代码片段,组件代码片段(mpvue 语法),weui 框架代码片段",
"version": "1.2.2",
"publisher": "banxi",
"icon": "images/logo.png",
"homepage": "https://github.com/banxi1988/mpvue-snippets",
"repository": {
"type": "git",
"url": "https://github.com/banxi1988/mpvue-snippets.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.3.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "vue",
"path": "./snippets/mp_components.json"
},
{
"language": "html",
"path": "./snippets/mp_components.json"
},
{
"language": "vue-html",
"path": "./snippets/mp_components.json"
},
{
"language": "vue",
"path": "./snippets/weui.json"
},
{
"language": "html",
"path": "./snippets/weui.json"
},
{
"language": "vue-html",
"path": "./snippets/weui.json"
},
{
"language": "javascript",
"path": "./snippets/wx_api.json"
},
{
"language": "typescript",
"path": "./snippets/wx_api.json"
},
{
"language": "javascript",
"path": "./snippets/mp_configs.json"
},
{
"language": "typescript",
"path": "./snippets/mp_configs.json"
}
]
},
"scripts": {
"build": "node ./snippets-src/make_snippets.js",
"vscode:prepublish": "node ./snippets-src/make_snippets.js"
}
}