-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.21 KB
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
{
"name": "vscode-helm-values",
"displayName": "Helm Values",
"description": "Preview resolved Helm template values inline with go-to-definition, find references, and values file selection",
"version": "0.1.5",
"publisher": "beeemT",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"helm",
"kubernetes",
"yaml",
"values",
"templates"
],
"activationEvents": [
"workspaceContains:**/Chart.yaml",
"onLanguage:yaml"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "helmValues.selectValuesFile",
"title": "Select Values File",
"category": "Helm"
},
{
"command": "helmValues.clearValuesFile",
"title": "Clear Values File Selection",
"category": "Helm"
},
{
"command": "helmValues.goToValueDefinition",
"title": "Go to Value Definition",
"category": "Helm"
},
{
"command": "helmValues.createMissingValue",
"title": "Create Missing Value",
"category": "Helm"
}
],
"menus": {
"commandPalette": [
{
"command": "helmValues.selectValuesFile",
"when": "workspaceFolderCount > 0"
},
{
"command": "helmValues.clearValuesFile",
"when": "workspaceFolderCount > 0"
},
{
"command": "helmValues.goToValueDefinition",
"when": "false"
},
{
"command": "helmValues.createMissingValue",
"when": "false"
}
]
},
"configuration": {
"title": "Helm Values",
"properties": {
"helmValues.enableInlayHints": {
"type": "boolean",
"default": true,
"description": "Enable inlay hints for Helm template values"
},
"helmValues.inlayHintMaxLength": {
"type": "number",
"default": 50,
"description": "Maximum length of inlay hint text before truncation"
},
"helmValues.enableArchiveIntrospection": {
"type": "boolean",
"default": true,
"description": "Enable go-to-definition and find-references for .tgz archive subcharts. Disable for improved performance with large charts."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "vscode-test",
"lint": "eslint src --ext ts",
"format": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.0",
"@types/tar-stream": "^3.1.3",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"dependencies": {
"js-yaml": "^4.1.0",
"tar-stream": "^3.1.7"
},
"repository": {
"type": "git",
"url": "https://github.com/beeemt/vscode-helm"
}
}