-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.38 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
{
"name": "hercules-script-support",
"displayName": "Hercules Script Support",
"description": "Adds support for Hercules (http://herc.ws) scripting language",
"author": "Guilherme Menaldo",
"publisher": "ggmenaldo",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "https://github.com/guilherme-gm/vscode-herc-lang-support"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"*"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "hercscript",
"aliases": [
"Hercules Script",
"hercscript"
],
"extensions": [
".txt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hercscript",
"scopeName": "source.herc",
"path": "./syntaxes/hercscript.tmLanguage.json"
}
],
"snippets": [
{
"language": "hercscript",
"path": "./snippets.json"
}
],
"configuration": {
"type": "object",
"title": "Hercules Script",
"properties": {
"hercscript.mapserverFolderPath": {
"type": "string",
"default": "",
"markdownDescription": "Specifies the folder path containing a **compiled Hercules** map-server. This map-server will be used to validate your scripts and find errors. Leaving this empty disables script validator. Must end with a `/`"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && npm run rebuild-treesitter && cd tree-sitter-hercscript && npm install && npm run electron-build && cd ../..",
"generate-commands": "node ./tools/join-json.js"
},
"devDependencies": {
"@types/node": "^10.12.18",
"tslint": "^5.11.1",
"typescript": "^3.2.4",
"vsce": "^1.59.0"
},
"dependencies": {}
}