This repository has been archived by the owner on Jul 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.05 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
{
"name": "gml-tools-langserver",
"displayName": "GML-Tools, Intellisense for GameMaker Studio 2 Project.",
"description": "GML Intellisense through the GML-Tools Language Server.",
"publisher": "Jonathan Spira (sanbox)",
"author": "Jonathan Spira",
"preview": true,
"version": "0.9.5",
"license": "MIT",
"engines": {
"vscode": "^1.26.0"
},
"keywords": [
"LSP",
"compile",
"language",
"GML",
"GMS2",
"editor",
"GML-Tools"
],
"bugs": "https://github.com/GameMakerDiscord/gml-tools-langserver/issues",
"repository": {
"type": "git",
"url": "https://github.com/GameMakerDiscord/gml-tools-langserver"
},
"dependencies": {
"adm-zip": "^0.4.11",
"ajv": "^6.5.3",
"cheerio": "^1.0.0-rc.2",
"chokidar": "^2.0.4",
"fast-json-stringify": "^1.9.0",
"fs-extra": "^7.0.0",
"gamemaker-rubber": "^2.0.3",
"intellisense": "0.0.1",
"ohm-js": "^0.14.0",
"path": "^0.12.7",
"uuid": "^3.3.2",
"vscode-languageserver": "^5.0.3",
"yyp-typings": "^2.2.1"
},
"scripts": {
"testBuild": "tsc && yarn link",
"testWatch": "tsc && yarn link && tsc -w",
"build": "tsc",
"prepublish": "yarn unlink && tsc"
},
"lint-staged": {
"*.{ts,json}": [
"prettier --write",
"git add"
]
},
"files": [
"out",
"lib",
"License.txt",
"README.md",
"CODE_OF_CONDUCT.md"
],
"devDependencies": {
"@types/adm-zip": "^0.4.31",
"@types/cheerio": "^0.22.8",
"@types/chokidar": "^1.7.5",
"@types/fs-extra": "^5.0.4",
"@types/node": "^10.7.0",
"@types/uuid": "^3.4.3",
"concurrently": "^3.6.1",
"electron-prebuilt": "^1.4.13",
"electron-rebuild": "^1.8.2",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.2",
"nodemon": "^1.18.3",
"typescript": "^3.0.1"
}
}