-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.17 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.17 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
{
"name": "wechat-snippet",
"description": "微信小程序代码辅助,代码片段自动完成",
"version": "0.4.10",
"publisher": "ChandZhang",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Snippets"
],
"keywords": [
"miniapp",
"小程序",
"wx",
"wechat",
"wxapi"
],
"contributes": {
"languages": [{
"id": "wxml",
"extensions": [
".wxml"
]
},
{
"id": "json",
"extensions": [
".json"
]
},
{
"id": "wxs",
"extensions": [
".wxs"
]
}
],
"snippets": [{
"language": "javascript",
"path": "./snippets/wxjs.json"
},
{
"language": "typescript",
"path": "./snippets/wxjs.json"
},
{
"language": "wxs",
"path": "./snippets/wxjs.json"
},
{
"language": "html",
"path": "./snippets/wxxml.json"
},
{
"language": "wxml",
"path": "./snippets/wxxml.json"
},
{
"language": "json",
"path": "./snippets/wxjson.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/Chand-zhang/wechat-snippet-vscode"
},
"bugs": {
"email": "zhangcd@iiwol.com"
},
"icon": "assets/image/logo.png",
"license": "MIT License"
}