-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.03 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.03 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
{
"name": "copilot-chef",
"displayName": "Copilot Chef",
"description": "A VS Code extension that turns GitHub Copilot into your personal sous-chef 👨🍳—whipping up advanced workflow orchestration, task management, and automation tools. Serve up streamlined AI-assisted development with customizable recipes for your go-to coding dishes.",
"version": "0.0.1",
"publisher": "Code and Sorts",
"repository": {
"type": "git",
"url": "https://github.com/Code-and-Sorts/CopilotChef.git"
},
"icon": "images/icon.png",
"license": "MIT",
"readme": "vscode-readme.md",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"AI",
"Chat"
],
"activationEvents": [
"onChatParticipant:copilot-chef"
],
"main": "./dist/extension.js",
"contributes": {
"chatParticipants": [
{
"id": "copilot-chef",
"fullName": "Copilot Chef",
"name": "copilot-chef",
"description": "Your Copilot sous-chef 👨🍳 for orchestrating workflows and automating tasks—serve up clean code with customizable dev recipes.",
"isSticky": true,
"commands": [
{
"name": "taskManager",
"description": "Process JSON input to run multiple agents in parallel"
},
{
"name": "orchestrator",
"description": "Generates tasks from a prompt"
},
{
"name": "workflow",
"description": "Process JSON input to run a workflow in sequence with optional approval gates"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "yarn run check-types && yarn run lint && node esbuild.js",
"watch": "yarn watch:esbuild & yarn watch:tsc",
"watch:esbuild": "NODE_NO_WARNINGS=1 node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "yarn run check-types && yarn run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "vscode-test",
"test:unit": "jest",
"create-vsix": "yarn package && npx @vscode/vsce package --no-dependencies"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.5.0",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"jest": "^30.0.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@inversifyjs/core": "^5.3.1",
"fast-xml-parser": "^5.2.5",
"inversify": "^7.5.2",
"reflect-metadata": "^0.2.2",
"zod": "^3.25.64"
},
"packageManager": "yarn@4.9.2"
}