-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.05 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
{
"name": "virtual-c-language-support",
"displayName": "Virtual C Language Support",
"description": "Full language support for Virtual C, VUEngine's C dialect, providing syntax highlighting, bracket matching, folding and Intellisense.",
"author": "KR155E <c.radke@posteo.de>",
"license": "MIT",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/VUEngine/Virtual-C-Language-Support"
},
"publisher": "vuengine",
"icon": "resources/icon.png",
"categories": [
"Programming Languages"
],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"*"
],
"contributes": {
"languages": [
{
"id": "vc",
"extensions": [
".c",
".h"
],
"aliases": [
"Virtual C"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "vc",
"scopeName": "source.vc",
"path": "./syntax/vc.tmLanguage.json"
}
],
"snippets": [
{
"language": "vc",
"path": "./snippets/vc.code-snippets"
}
]
},
"main": "./dist/client/src/extension.js",
"scripts": {
"vscode:prepublish": "npm run esbuild -- --minify",
"esbuild": "esbuild ./client/src/extension.ts ./server/src/server.ts --bundle --outdir=dist/ --external:vscode --format=cjs --platform=node",
"compile": "npm run esbuild -- --sourcemap",
"watch": "npm run esbuild -- --sourcemap --watch",
"lint": "eslint",
"package": "npm run compile && vsce package --allow-star-activation",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20",
"@vscode/vsce": "^3.2.1",
"esbuild": "^0.19.11",
"eslint": "^9.13.0",
"mocha": "^10.3.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"xml-js": "^1.6.11"
}
}