-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "rusted-warfare-vscode",
"displayName": "Rusted Warfare Support",
"description": "Workspace detection, syntax highlighting, code completion and format checker for Rusted Warfare",
"version": "0.1.1",
"homepage": "https://github.com/yvvki/rusted-warfare-vscode#readme",
"bugs": {
"url": "https://github.com/yvvki/rusted-warfare-vscode/issues"
},
"license": "MIT",
"author": {
"name": "Yuuki Rika",
"email": "[email protected]"
},
"publisher": "yvvki",
"repository": {
"type": "git",
"url": "https://github.com/yvvki/rusted-warfare-vscode.git"
},
"engines": {
"vscode": "^1.95.0"
},
"categories": ["Programming Languages"],
"activationEvents": [],
"main": "./out/main.js",
"contributes": {
"commands": [
{
"command": "extension.rw.helloWorld",
"title": "Hello World"
}
],
"languages": [
{
"id": "rw",
"aliases": ["Rusted Warfare", "rw"],
"extensions": [".txt", ".ini", ".template"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "rw",
"scopeName": "source.ini.rw",
"path": "./syntaxes/rw.tmLanguage.json"
}
]
},
"scripts": {
"compile": "bun build src/main.js --outdir out --target node --format cjs --external vscode --sourcemap",
"vscode:prepublish": "bun run compile",
"package": "bunx @vscode/vsce package",
"publish": "bunx @vscode/vsce publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "20",
"@types/vscode": "^1.95.0"
},
"trustedDependencies": ["@biomejs/biome"]
}