-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
112 lines (112 loc) · 2.33 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
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "miniapp-helper",
"displayName": "小程序开发助手",
"description": "微信小程序开发助手",
"version": "1.0.3",
"icon": "assets/images/logo.png",
"publisher": "overtrue",
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Languages",
"Snippets",
"Other"
],
"keywords": [
"小程序",
"微信",
"wechat",
"miniapp",
"wxml"
],
"author": {
"email": "[email protected]",
"name": "overtrue",
"url": "http://github.com/overtrue"
},
"repository": {
"type": "git",
"url": "https://github.com/overtrue/vscode-miniapp-helper"
},
"bugs": {
"url": "https://github.com/overtrue/vscode-miniapp-helper/issues",
"email": "[email protected]"
},
"contributes": {
"languages": [
{
"id": "wxml",
"aliases": [
"wxml",
"wxml"
],
"extensions": [
".wxml"
],
"configuration": "./language-configuration.json"
},
{
"id": "json",
"extensions": [
".json"
]
},
{
"id": "wxs",
"extensions": [
".wxs"
]
}
],
"grammars": [
{
"language": "wxml",
"scopeName": "text.html.wxml",
"path": "./syntaxes/wxml.tmLanguage"
}
],
"snippets": [
{
"language": "javascript",
"path": "./snippets/js.json"
},
{
"language": "typescript",
"path": "./snippets/js.json"
},
{
"language": "wxs",
"path": "./snippets/js.json"
},
{
"language": "html",
"path": "./snippets/wxml.json"
},
{
"language": "wxml",
"path": "./snippets/wxml.json"
},
{
"language": "json",
"path": "./snippets/json.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "node ./scripts/compile.js",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"fast-xml-parser": "^3.21.1",
"vscode": "^1.1.37"
},
"dependencies": {}
}