-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.61 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
{
"name": "vscode-maestro-extension",
"displayName": "The maestro extension",
"description": "Maestro extension for vscode",
"author": "Rouret Lucas",
"version": "0.1.1",
"publisher": "rouret-lucas",
"icon": "resources/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/rouret/vscode-maestro-extension"
},
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Other",
"Snippets"
],
"activationEvents": [
"onStartupFinished",
"onLanguage:yaml"
],
"main": "./out/extension.js",
"contributes": {
"menus": {
"view/item/context": [
{
"command": "maestro.launchFlow",
"when": "view == maestroExplorer && viewItem == yamlFile",
"group": "inline"
}
],
"view/title": [
{
"command": "maestro.refreshMaestroTreeView",
"when": "view == maestroExplorer",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "maestro-explorer",
"title": "Maestro Explorer",
"icon": "resources/icon.svg"
}
]
},
"views": {
"maestro-explorer": [
{
"id": "maestroExplorer",
"name": "Maestro Explorer",
"icon": "resources/icon.svg",
"contextualTitle": "Maestro Explorer"
}
]
},
"commands": [
{
"command": "maestro.launchFlow",
"title": "Maestro: Launch flow",
"icon": {
"light": "resources/icons/light/play.svg",
"dark": "resources/icons/dark/play.svg"
}
},
{
"command": "maestro.refreshMaestroTreeView",
"title": "Refresh MAestro Tree View",
"icon": {
"light": "resources/icons/light/refresh.svg",
"dark": "resources/icons/dark/refresh.svg"
}
}
],
"snippets": [
{
"language": "yaml",
"path": "./config/maestro.code-snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"generate": "vsce package"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "~18.19.31",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.57.0",
"glob": "^10.3.12",
"mocha": "^10.4.0",
"typescript": "^5.4.5"
}
}