-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.07 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
{
"name": "gyp",
"displayName": "GYP",
"version": "1.0.0",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"GYP",
"Chromium GYP",
"Generate Your Projects",
"node-gyp"
],
"icon": "assets/logo.png",
"description": "GYP support for VSCode.",
"scripts": {
"build-wasm": "tree-sitter build-wasm ./node_modules/tree-sitter-legesher-python",
"compile": "tsc -p ./",
"postinstall": "rm -f package-lock.json && npm run build-wasm && npm run update-grammar",
"update-grammar": "make update-grammar",
"vscode:prepublish": "make pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XadillaX/vscode-gyp.git"
},
"author": "XadillaX <i@2333.moe>",
"publisher": "XadillaX",
"license": "MIT",
"bugs": {
"url": "https://github.com/XadillaX/vscode-gyp/issues"
},
"homepage": "https://github.com/XadillaX/vscode-gyp#readme",
"activationEvents": [
"onLanguage:gyp"
],
"main": "./out/extension.js",
"devDependencies": {
"@types/node": "^17.0.21",
"@types/vscode": "^1.20.0",
"eslint": "^8.11.0",
"eslint-config-egg": "^11.0.1",
"spidex": "^2.2.1",
"tree-sitter-cli": "^0.20.0",
"tree-sitter-legesher-python": "^0.19.3",
"typescript": "^4.6.2",
"vscode-update-grammar-tool": "^1.0.0"
},
"dependencies": {
"sdk-base": "^3.6.0",
"web-tree-sitter": "^0.20.0"
},
"contributes": {
"languages": [
{
"id": "gyp",
"extensions": [
".gyp",
".gypi"
],
"aliases": [
"GYP"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "gyp",
"scopeName": "source.python",
"path": "./syntaxes/MagicPython.tmLanguage.json"
},
{
"scopeName": "source.regexp.python",
"path": "./syntaxes/MagicRegExp.tmLanguage.json"
}
],
"configurationDefaults": {
"[gyp]": {
"editor.semanticHighlighting.enabled": true
}
}
}
}