-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 3.23 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
{
"name": "vscode-lua-vu",
"displayName": "Vua",
"description": "An unofficial Visual Studio Code extension for Venice Unleashed Lua functionality",
"version": "0.3.7",
"publisher": "Imposter",
"icon": "VuaIcon.png",
"repository": {
"type": "git",
"url": "https://github.com/Imposter/vscode-lua-vu"
},
"license": "MIT",
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onCommand:vua.showMenu",
"onLanguage:lua"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "vua.showMenu",
"title": "Vua Commands"
}
],
"languages": [
{
"id": "lua",
"aliases": [
"Lua"
],
"extensions": [
".lua"
]
}
],
"configuration": {
"type": "object",
"title": "Vua",
"properties": {
"vua.interface.showErrors": {
"type": "boolean",
"default": false,
"description": "Show intermediate file errors when a file has bad syntax and cannot be generated. You can get the same functionality when rebuilding intermediate files."
},
"vua.generation.disable": {
"type": "boolean",
"default": false,
"markdownDescription": "Disable intermediate code generation. IntelliSense quality may deteriorate as a result of setting this to true."
},
"vua.generation.forceGlobal": {
"type": "boolean",
"default": true,
"markdownDescription": "Forcefully define classes in a global context. This allows you to define classes as `class('MyObject')` rather than `MyObject = class('MyObject')` and have full type information generated for them"
}
}
}
},
"extensionDependencies": [
"sumneko.lua"
],
"scripts": {
"build": "npm run-script compile_grammar && npm run-script compile",
"compile_grammar": "cd src/code-gen/parser && antlr4ts -listener LuaLexer.g4 LuaParser.g4 -o generated",
"compile": "tsc -b",
"watch": "tsc -b -w",
"test": "mocha --require ts-node/register --timeout 3600000 test/**/*.test.ts"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^7.0.2",
"@types/node": "^14.18.22",
"@types/throttle-debounce": "^2.1.0",
"@types/vscode": "^1.64.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"mocha": "^9.2.2",
"tslint": "^6.1.0",
"typescript": "^3.9.10"
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4",
"axios": "^0.26.1",
"fs-extra": "^9.1.0",
"glob": "^7.2.3",
"js-yaml": "^4.1.0",
"node-stream-zip": "^1.15.0",
"recursive-copy": "^2.0.14",
"throttle-debounce": "^3.0.1"
}
}