-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 2 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
{
"name": "gnls",
"publisher": "msedge-dev",
"version": "0.1.4",
"displayName": "GN Language Server",
"description": "Code IntelliSense for GN build system.",
"license": "SEE LICENSE IN LICENSE",
"categories": [
"Programming Languages"
],
"keywords": [
"gn",
"chromium"
],
"homepage": "https://github.com/microsoft/gnls",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/gnls.git"
},
"bugs": {
"url": "https://github.com/microsoft/gnls/issues"
},
"main": "./build/index.js",
"engines": {
"vscode": "^1.83.0"
},
"extensionKind": [
"workspace"
],
"contributes": {
"languages": [
{
"id": "gn",
"aliases": [
"GN",
"gn"
],
"extensions": [
"gn",
"gni"
],
"configuration": "./build/language.json"
}
],
"grammars": [
{
"language": "gn",
"scopeName": "source.gn",
"path": "./build/grammar.json"
}
]
},
"devDependencies": {
"@eslint/js": "9.23.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.7",
"@types/node": "^22.13.14",
"@types/vscode": "^1.83.2",
"@vscode/vsce": "^3.3.1",
"eslint": "9.23.0",
"jest": "^29.7.0",
"jiti": "^2.4.2",
"node-addon-api": "^8.3.1",
"node-gyp": "^11.1.0",
"prettier": "^3.0.3",
"rollup": "^4.2.0",
"ts-jest": "^29.1.0",
"typescript": "5.8.2",
"typescript-eslint": "8.28.0",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
},
"scripts": {
"prepare": "jiti script prepare",
"build": "jiti script build",
"debug": "jiti script debug",
"test": "jiti script test",
"format": "jiti script format",
"package": "jiti script package"
}
}