forked from breaking-brake/cc-wf-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.88 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
{
"name": "cc-wf-studio",
"displayName": "Claude Code Workflow Studio",
"description": "Visual workflow editor for Claude Code Slash Commands, Sub Agents, Agent Skills, and MCP Tools",
"version": "3.15.3",
"publisher": "breaking-brake",
"icon": "resources/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/breaking-brake/cc-wf-studio"
},
"homepage": "https://breaking-brake.github.io/",
"license": "AGPL-3.0-or-later",
"keywords": [
"claude",
"claude code",
"claudecode",
"code",
"workflow",
"flow",
"visual-editor",
"automation",
"ai",
"mcp"
],
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"AI",
"Visualization"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "cc-wf-studio.openEditor",
"title": "Claude Code Workflow Studio: Open Editor",
"icon": {
"light": "resources/icon.png",
"dark": "resources/icon.png"
}
}
],
"menus": {
"editor/title": [
{
"command": "cc-wf-studio.openEditor",
"group": "navigation"
}
]
},
"customEditors": [
{
"viewType": "cc-wf-studio.workflowPreview",
"displayName": "Workflow Preview",
"selector": [
{
"filenamePattern": "**/.vscode/workflows/*.json"
}
],
"priority": "default"
}
],
"configuration": {
"title": "Claude Code Workflow Studio",
"properties": {
"cc-wf-studio.ai.schemaFormat": {
"type": "string",
"enum": [
"json",
"toon"
],
"default": "toon",
"description": "Schema format for AI prompts. 'toon' reduces token consumption by ~23%."
},
"cc-wf-studio.ai.collectMetrics": {
"type": "boolean",
"default": false,
"description": "Collect and log metrics for A/B comparison of schema formats. Note: Prompt format is always 'toon'."
}
}
}
},
"activationEvents": [
"onUri",
"onCustomEditor:cc-wf-studio.workflowPreview"
],
"scripts": {
"vscode:prepublish": "npm run build",
"generate:toon": "npx tsx scripts/generate-toon-schema.ts",
"generate:editing-flow": "npx tsx scripts/generate-editing-flow.ts",
"build": "npm run generate:toon && npm run generate:editing-flow && npm run build:webview && npm run build:extension",
"build:dev": "npm run build:webview:dev && npm run build:extension:dev",
"build:webview": "cd src/webview && npm run build",
"build:webview:dev": "cd src/webview && npm run build:dev",
"build:extension": "vite build --config vite.extension.config.ts",
"build:extension:dev": "vite build --config vite.extension.config.ts --mode development",
"compile": "tsc -p ./",
"watch": "vite build --config vite.extension.config.ts --watch",
"watch:webview": "cd src/webview && npm run dev",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "cd src/webview && npm run test",
"test:integration": "vscode-test",
"test:e2e": "wdio run wdio.conf.ts"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.0.3",
"@types/vscode": "^1.80.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.3.8",
"conventional-changelog-conventionalcommits": "^9.1.0",
"semantic-release": "^25.0.2",
"typescript": "^5.3.0",
"vite": "^7.3.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@slack/web-api": "^7.13.0",
"@toon-format/toon": "^2.1.0",
"nano-spawn": "^2.0.0"
}
}