-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
150 lines (150 loc) · 4.89 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "tiltfile",
"displayName": "Tiltfile",
"description": "Provides an improved editing experience for `Tiltfile` authors.",
"publisher": "tilt-dev",
"repository": {
"type": "git",
"url": "https://github.com/tilt-dev/vscode-tilt"
},
"icon": "assets/tilt-transparent.png",
"preview": true,
"version": "0.0.4",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"Tiltfile",
"Tilt",
"tilt",
"Kubernetes",
"kubernetes",
"k8s",
"development",
"dev env",
"docker"
],
"contributes": {
"languages": [
{
"id": "tiltfile",
"aliases": [
"Tiltfile",
"tiltfile"
],
"extensions": [
"Tiltfile",
".tiltfile",
".tilt"
],
"configuration": "./syntaxes/tiltfile.configuration.json"
}
],
"grammars": [
{
"language": "tiltfile",
"scopeName": "source.tiltfile",
"path": "./syntaxes/tiltfile.tmLanguage.json"
}
],
"configuration": [
{
"type": "object",
"title": "Tiltfile",
"properties": {
"tiltfile.trace.server": {
"type": [
"string",
"null"
],
"default": "off",
"description": "Log requests and responses to Tiltfile LSP",
"enum": [
"off",
"verbose",
"debug"
],
"pattern": "off|verbose|debug",
"patternErrorMessage": "Invalid log level"
},
"tiltfile.server.port": {
"type": [
"number",
"null"
],
"default": null,
"description": "Port (on localhost) of running language server",
"scope": "machine-overridable"
},
"tiltfile.tilt.path": {
"type": [
"string",
"null"
],
"default": null,
"description": "File path of Tilt program to run the language server",
"scope": "machine-overridable"
},
"tiltfile.showStatusBarButton": {
"type": "boolean",
"default": true,
"description": "Whether to show a button for this extension in the VSCode StatusBar",
"scope": "machine-overridable"
},
"tiltfile.tilt.webui.port": {
"type": "number",
"default": 10350,
"description": "Port to open the Tilt Web UI on",
"scope": "machine-overridable"
}
}
}
],
"commands": [
{
"command": "tiltfile.restartServer",
"title": "Restart Tiltfile LSP Server"
}
]
},
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:tiltfile"
],
"scripts": {
"vscode:prepublish": "npm run clean && npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"compile": "npm run esbuild",
"watch": "npm run esbuild-watch",
"clean": "rm -rf out",
"prettier": "prettier --write \"src/**/*.ts\"",
"check": "prettier --check \"src/**/*.ts*\" && tsc -p .",
"test": "jest"
},
"dependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/split2": "^3.2.1",
"glob": "^7.2.0",
"jest": "^27.5.1",
"split2": "^4.1.0",
"ts-jest": "^27.1.4",
"vscode-languageclient": "^7.0.0"
},
"devDependencies": {
"@types/node": "^17.0.13",
"@types/vscode": "^1.63.0",
"@vscode/test-electron": "^1.6.2",
"esbuild": "^0.14.29",
"prettier": "2.6.2",
"typescript": "^4.4.3"
},
"jest": {
"preset": "ts-jest"
}
}