-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 3.92 KB
/
Copy pathpackage.json
File metadata and controls
146 lines (146 loc) · 3.92 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "workflow-visual-editor",
"displayName": "Workflow Visual Editor",
"description": "Visual editor for GitHub Actions workflow files",
"version": "1.2.46",
"publisher": "Timoa",
"author": "Damien Laureaux",
"homepage": "https://workflow-editor.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timoa/workflow-editor.git"
},
"icon": "images/icon.png",
"categories": [
"Visualization"
],
"keywords": [
"github-actions",
"github-actions-workflow",
"workflow",
"yaml",
"devops",
"visual-editor",
"automation",
"github"
],
"engines": {
"vscode": "^1.80.0",
"node": ">=24"
},
"main": "./out/extension/extension.js",
"contributes": {
"commands": [
{
"command": "workflow-visual-editor.open",
"title": "Open Workflow Editor",
"category": "Workflow Editor"
},
{
"command": "workflow-visual-editor.openFile",
"title": "Open Workflow File",
"category": "Workflow Editor"
},
{
"command": "workflow-visual-editor.openWithEditor",
"title": "Open with Workflow Editor",
"category": "Workflow Editor"
},
{
"command": "workflow-visual-editor.save",
"title": "Save",
"category": "Workflow Editor"
},
{
"command": "workflow-visual-editor.undo",
"title": "Undo",
"category": "Workflow Editor"
}
],
"keybindings": [
{
"command": "workflow-visual-editor.save",
"key": "ctrl+s",
"mac": "cmd+s",
"when": "workflowEditorFocus"
},
{
"command": "workflow-visual-editor.undo",
"key": "ctrl+z",
"mac": "cmd+z",
"when": "workflowEditorFocus"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceExtname == .yml || resourceExtname == .yaml",
"command": "workflow-visual-editor.openWithEditor",
"group": "navigation"
}
]
},
"debuggers": []
},
"scripts": {
"vscode:prepublish": "pnpm run compile && pnpm run webpack",
"compile": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json -w",
"webpack": "webpack --mode production",
"webpack-dev": "webpack --mode development --watch",
"package": "vsce package --no-dependencies",
"publish": "vsce publish --no-dependencies",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "node ./out/test/e2e/runTest.js"
},
"dependencies": {
"@actions/workflow-parser": "0.3.57",
"@codemirror/commands": "6.10.2",
"@codemirror/language": "6.12.1",
"@codemirror/legacy-modes": "6.5.2",
"@codemirror/state": "6.5.4",
"@codemirror/theme-one-dark": "6.1.3",
"@codemirror/view": "6.39.15",
"@xyflow/react": "12.10.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "5.5.0",
"yaml": "2.8.3"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tailwindcss/postcss": "4.2.0",
"@types/mocha": "10.0.10",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/vscode": "1.80.0",
"@vitejs/plugin-react": "5.1.4",
"@vitest/coverage-v8": "^4.1.8",
"@vscode/test-electron": "2.5.2",
"@vscode/vsce": "3.7.1",
"autoprefixer": "10.4.27",
"css-loader": "7.1.4",
"eslint": "10.2.0",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"fast-check": "4.6.0",
"globals": "17.3.0",
"mini-css-extract-plugin": "2.10.2",
"mocha": "^11.7.5",
"postcss": "8.5.15",
"postcss-loader": "8.2.1",
"tailwindcss": "4.2.0",
"ts-loader": "9.5.7",
"typescript": "5.9.3",
"typescript-eslint": "8.56.0",
"vite": "7.3.5",
"vitest": "^4.1.8",
"webpack": "5.106.2",
"webpack-cli": "6.0.1"
}
}