-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.62 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
{
"name": "vscode-typescript-to-lua",
"version": "0.3.4",
"private": true,
"displayName": "TypeScriptToLua",
"description": "TypeScriptToLua support for Visual Studio Code",
"repository": {
"type": "git",
"url": "https://github.com/TypeScriptToLua/vscode-typescript-to-lua"
},
"license": "Apache-2.0",
"publisher": "typescript-to-lua",
"icon": "docs/icon.png",
"categories": [
"Programming Languages"
],
"keywords": [
"typescript",
"lua"
],
"engines": {
"vscode": "^1.45.0"
},
"contributes": {
"typescriptServerPlugins": [
{
"name": "typescript-tstl-plugin",
"enableForWorkspaceTypeScriptVersions": true
}
],
"jsonValidation": [
{
"fileMatch": "tsconfig.json",
"url": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json"
},
{
"fileMatch": "tsconfig.*.json",
"url": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json"
},
{
"fileMatch": "tsconfig-*.json",
"url": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json"
}
]
},
"scripts": {
"lint": "prettier --check **/*.{md,yml,json}",
"fix:prettier": "prettier --write **/*.{md,yml,json}",
"postversion": "git push && git push --tags"
},
"prettier": {
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"typescript-tstl-plugin": "^0.3.2"
},
"devDependencies": {
"prettier": "^1.17.0"
}
}