-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 2.41 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "scp",
"displayName": "(UO) Sphere SCP Syntax Highlight",
"description": "SCP Syntax Highlight for VS Code.",
"version": "2.0.3",
"publisher": "fabiohvp",
"license": "MIT",
"categories": [
"Programming Languages",
"Snippets",
"Themes",
"Linters"
],
"preview": true,
"repository": {
"type": "git",
"url": "https://github.com/fabiohvp/SCP"
},
"activationEvents": [
"onLanguage:scp"
],
"main": "./out/extension",
"engines": {
"vscode": "^1.10.0"
},
"contributes": {
"languages": [
{
"id": "scp",
"aliases": [
"SCP",
"scp",
"Sphere Script"
],
"extensions": [
".scp"
],
"configuration": "./scp.configuration.json"
}
],
"grammars": [
{
"language": "scp",
"scopeName": "source.scp",
"path": "./scp.json"
}
],
"snippets": [
{
"language": "scp",
"path": "./snippets/scp.json"
}
],
"themes": [
{
"label": "[SCP] Light Theme",
"uiTheme": "vs",
"path": "./themes/light.tmTheme"
},
{
"label": "[SCP] Dark Theme",
"uiTheme": "vs",
"path": "./themes/dark.tmTheme"
}
],
"configuration": {
"type": "object",
"title": "SCP Language",
"properties": {
"scp.enableOFP": {
"type": "boolean",
"default": true,
"description": "Enable commands introduced with Operation Flashpoint"
},
"scp.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
}
}
},
"configurationDefaults": {
"[scp]": {
"editor.quickSuggestions": true,
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.detectIndentation": true,
"editor.trimAutoWhitespace": true,
"editor.autoClosingBrackets": "always"
}
}
},
"scripts": {
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "15.6.1",
"typescript": "^4.3.2",
"vscode": "^1.1.37"
},
"dependencies": {
"vscode-languageclient": "^3.1.0",
"vscode-languageserver": "^3.1.0"
}
}