-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
151 lines (151 loc) · 5.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "aoe2-aiscript",
"displayName": "AoE2 AiScript",
"description": "Command tooltips and syntax highlighting for Age of Empires 2 AI scripts",
"version": "0.1.7",
"keywords": [
"aoeII",
"age",
"empires",
"age of empires",
"ai scripting"
],
"license": "GPL-3.0-or-later",
"author": "jvinniec",
"publisher": "jvinniec",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Jvinniec/aoe2-aiscript.git"
},
"activationEvents": [
"onLanguage:aoe2aiscript"
],
"main": "./languageExtension/out/extension",
"badges": [
{
"description": "GitHub release version",
"href": "https://github.com/Jvinniec/aoe2-aiscript.git",
"url": "https://badge.fury.io/gh/jvinniec%2Faoe2-aiscript.svg"
}
],
"categories": [
"Programming Languages",
"Linters",
"Snippets"
],
"contributes": {
"languages": [
{
"id": "aoe2aiscript",
"aliases": [
"Aoe2 AiScript",
"aoe2aiscript"
],
"extensions": [
".per"
],
"configuration": "./language-configuration.json"
}
],
"configuration": {
"type": "object",
"title": "AoE2 AiScript",
"properties": {
"aoe2_AiScript.updateErrorsWhen": {
"scope": "resource.aiscript",
"type": "string",
"enum": [
"never",
"onSave",
"onChange"
],
"default": "never",
"description": "Controls when error squiggles are updated. Default: update only when the file is saved. Change to 'onChange' to update whenever the file is edited (this may have some performance cost for large files)."
},
"aoe2_AiScript.maxErrorsReported": {
"scope": "resource.aiscript",
"type": "integer",
"minimum": -1,
"default": 100,
"description": "Controls the maximum number of errors reported in a file. '-1' means no limit."
},
"aoe2_AiScript.enableCompletionHelp": {
"scope": "resource.aiscript",
"type": "boolean",
"enum": [
true,
false
],
"default": true,
"description": "Controls whether completion suggestions features will be enabled."
},
"aoe2_AiScript.enableParameterHelp": {
"type": "string",
"scope": "resource.aiscript",
"enum": [
"off",
"parametersOnly",
"full"
],
"default": "parametersOnly",
"description": "Controls whether parameter help will be provided as you write commands."
},
"aoe2_AiScript.enableHoverHelp": {
"scope": "resource.aiscript",
"type": "boolean",
"enum": [
true,
false
],
"default": true,
"description": "Controls whether parameter help will be provided when you hover over a parameter."
},
"aoe2_AiScript.aiName": {
"scope": "resource.aiscript",
"type": "string",
"default": "",
"description": "Name of the ai to be edited"
},
"aoe2_AiScript.aiDirectory": {
"scope": "resource.aiscript",
"type": "string",
"default": "${workspaceFolder}",
"description": "Path to the directory containing the AI script '.ai' file."
}
}
},
"grammars": [
{
"language": "aoe2aiscript",
"scopeName": "source.per",
"path": "./syntaxes/aoe2aiscript.tmLanguage.json"
}
],
"snippets": [
{
"language": "aoe2aiscript",
"path": "./snippets/aoe2aiscript.tmSnippets.json"
}
]
},
"engines": {
"vscode": "^1.30.0"
},
"scripts": {
"vscode:prepublish": "cd languageExtension && npm run update-vscode && cd .. && npm run compile",
"compile": "rm -r ./languageExtension/out; tsc -b",
"watch": "tsc -b -w",
"test": "node ./languageExtension/out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.0",
"tslint": "^6.1.3",
"typescript": "^3.1.3",
"vscode-test": "^1.4.0"
},
"dependencies": {
"levenshtein": "^1.0.5"
}
}