This repository was archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "vscode-rke-cluster-config",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Other",
"Linters"
],
"activationEvents": [
"onLanguage:yaml"
],
"keywords": [
"rancher",
"rke",
"configuration",
"kubernetes",
"yaml",
"k8s"
],
"version": "0.0.6",
"description": "VSCode extension for RKE cluster configuration",
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./ && tsc -p ./tsconfig.schemas.json",
"clean": "rm -rf ./out/ ./schemas/out/",
"cleandeps": "rm -rf node_modules",
"package": "vsce package --yarn",
"schema": "go run dump_cluster_config_schema.go && node ./schemas/out/process-schema.js",
"schemaCheck": "node ./schemas/out/validate.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dcermak/vscode-rke-cluster-config"
},
"author": "Dan Čermák <dcermak@suse.com>",
"publisher": "dancermak",
"preview": true,
"license": "MIT",
"icon": "media/icon-rke.png",
"galleryBanner": {
"color": "#ECF0F1",
"theme": "light"
},
"dependencies": {},
"extensionDependencies": [
"redhat.vscode-yaml"
],
"devDependencies": {
"@exodus/schemasafe": "^1.0.0-rc.4",
"@types/node": "^16",
"@types/vscode": "^1.50.0",
"ovsx": ">=0.2.0",
"typescript": "^4",
"vsce": ">=1.96",
"yaml": "^1.10.2"
}
}