-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
64 lines (64 loc) · 1.81 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
{
"name": "vscode-lua-format",
"displayName": "vscode-lua-format",
"description": "Reformats your Lua source code.",
"version": "1.3.8",
"homepage": "https://github.com/Koihik/LuaFormatter",
"icon": "lua-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/Koihik/vscode-lua-format.git"
},
"keywords": [
"Lua",
"format",
"beautifier",
"pretty printer"
],
"bugs": {
"url": "https://github.com/Koihik/LuaFormatter/issues"
},
"license": "Apache License Version 2.0",
"publisher": "Koihik",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:lua"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"title": "vscode-lua-format configuration",
"properties": {
"vscode-lua-format.configPath": {
"type": "string",
"default": "",
"description": "Specifies the style config file."
},
"vscode-lua-format.binaryPath": {
"type": "string",
"default": "",
"description": "Specifies alternative lua-format binary path."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint . --ext .ts,.tsx"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"typescript": "^3.9.3",
"@types/vscode": "^1.32.0"
}
}