-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "z-blog-php-color",
"displayName": "Z-BlogPHP-Color",
"description": "Z-BlogPHP 模板语法高亮插件",
"version": "0.0.3",
"publisher": "wdssmq",
"author": {
"name": "wdssmq",
"email": "wdssmq@qq.com"
},
"bugs": {
"url": "https://github.com/wdssmq/Z-BlogPHP-Color/issues",
"email": "wdssmq@qq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/wdssmq/Z-BlogPHP-Color.git"
},
"engines": {
"vscode": "^1.54.0"
},
"icon": "vscode-logo.png",
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"scopeName": "text.html.phpz",
"path": "./syntaxes/phpz.tmLanguage.json",
"injectTo": [
"text.html"
]
}
]
},
"scripts": {
"yl2js": "npx js-yaml syntaxes/phpz.tmLanguage.yaml > syntaxes/phpz.tmLanguage.json"
},
"note": {
"js2yl3eav": "npx js-yaml syntaxes/phpz.tmLanguage.json > syntaxes/phpz.tmLanguage.yaml"
},
"devDependencies": {
"js-yaml": "^4.0.0"
}
}