-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 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
{
"name": "sourcepawn-vscode",
"displayName": "SourcePawn",
"description": "SourcePawn highlighting and autocompletion.",
"version": "0.2.0",
"publisher": "Dreae",
"main": "out/index",
"icon": "sm.png",
"repository": {
"type": "git",
"url": "https://github.com/Dreae/sourcepawn-vscode.git"
},
"engines": {
"vscode": "^1.14.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:sourcepawn"
],
"contributes": {
"configuration": {
"type": "object",
"title": "SourcePawn Language Server configuration",
"properties": {
"sourcepawnLanguageServer.sourcemod_home": {
"type": "string",
"description": "The location of the SourceMod API include files found in addons/sourcemod/scripting/include"
},
"sourcepawnLanguageServer.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the language server service."
}
}
},
"languages": [
{
"id": "sourcepawn",
"aliases": [
"SourcePawn",
"sourcepawn"
],
"extensions": [
".sp",
".inc"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "sourcepawn",
"scopeName": "source.sourcepawn",
"path": "./syntaxes/sourcepawn.tmLanguage.json"
}
]
},
"dependencies": {
"glob": "^7.1.2",
"vscode-languageclient": "^7.0.0"
},
"devDependencies": {
"@types/node": "^8.0.14",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"vscode": "^1.1.4",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"pkgvars": "node ./node_modules/vscode/bin/install",
"compile": "tsc -b",
"postinstall": "cd server && npm i"
}
}