-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.19 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.19 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
{
"name": "rwx-vscode-extension",
"displayName": "RWX",
"description": "The RWX extension helps with authoring RWX CI/CD run definition files.",
"version": "0.2.5",
"publisher": "RWX",
"icon": "icons/logo.png",
"homepage": "https://github.com/rwx-cloud/vscode-extension",
"repository": {
"type": "git",
"url": "git+https://github.com/rwx-cloud/vscode-extension.git"
},
"engines": {
"vscode": "^1.74.0"
},
"extensionDependencies": [],
"categories": [
"Programming Languages"
],
"keywords": [
"rwx",
"mint",
"yaml",
"workflow",
"ci/cd"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "rwx.dumpDebugData",
"title": "Dump debug data",
"category": "RWX"
}
],
"configuration": {
"title": "RWX",
"properties": {
"yaml.completion": {
"type": "boolean",
"default": true,
"description": "Enable YAML autocompletion"
},
"yaml.suggest.parentSkeletonSelectedFirst": {
"type": "boolean",
"default": false,
"description": "Show property suggestions immediately without requiring parent skeleton selection"
},
"editor.suggest.showDocumentation": {
"type": "boolean",
"default": true,
"description": "Show documentation in suggestion widget"
},
"[yaml]": {
"type": "object",
"default": {
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.suggest.insertMode": "replace",
"editor.suggest.showStatusBar": true,
"editor.suggest.showIcons": true,
"editor.suggest.showSnippets": true,
"editor.suggest.showWords": false,
"editor.suggest.showKeywords": false,
"editor.suggest.showDocumentation": true,
"editor.suggest.localityBonus": true,
"editor.suggest.shareSuggestSelections": false
},
"description": "Language-specific editor settings for YAML files to enable automatic suggestions with documentation"
}
}
}
},
"activationEvents": [
"onLanguage:yaml"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "node esbuild.config.js --production",
"compile:watch": "node esbuild.config.js --watch",
"watch": "node esbuild.config.js --watch",
"postinstall": "cd client && npm install && cd ../server && npm install",
"package": "vsce package",
"bundle-parser": "echo 'Parser bundling moved to language server repository'",
"install-local": "npm run bundle-parser && npm run compile && npm run package && code --install-extension rwx-vscode-extension-0.1.10.vsix --force"
},
"dependencies": {
"vscode-languageclient": "^8.1.0",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.8",
"yaml": "^2.3.0"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.74.0",
"@vscode/test-electron": "^2.3.0",
"esbuild": "^0.25.6",
"typescript": "^5.0.0",
"vsce": "^2.15.0"
}
}