-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "ZS-HiLi",
"displayName": "ZeroSyntax-Highlight",
"description": "Syntax highlighting for Zero Hour map.ini",
"icon": "./resources/icon.png",
"version": "1.0.4",
"publisher": "ViTeXFTW",
"author": {
"name": "ViTeXFTW",
"email": "vitexftw@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ViTeXFTW/ZeroSyntax-Highlight"
},
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Themes",
"Visualization"
],
"contributes": {
"grammars": [
{
"language": "ini",
"scopeName": "source.ZH-HiLi",
"path": "./syntaxes/ini.tmLanguage.json"
}
]
},
"devDependencies": {
"minimatch": "^9.0.3",
"minimist": "^1.2.8",
"rimraf": "^5.0.5",
"vscode": "^1.1.34"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run clean && tsc -p ./",
"watch": "tsc -watch -p ./",
"clean": "rimraf ./out && rimraf ./dist",
"lint": "eslint . --ext ts",
"package": "vsce package",
"test": "npm run compile && node ./out/test/runTest.js",
"posttest": "npm run lint",
"prepublishOnly": "npm test",
"prepare": "npm run compile && npm run package"
},
"dependencies": {
"typescript": "^5.3.3"
}
}