forked from github/copilot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.12 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
{
"name": "copilot-multi-agent-app",
"version": "1.0.0",
"description": "Multi-agent development platform with Copilot SDK and Figma integration",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"copilot",
"multi-agent",
"figma",
"ai",
"sdk"
],
"author": "",
"license": "MIT",
"dependencies": {
"@github/copilot-sdk": "^0.1.8",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"socket.io": "^4.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.4.0",
"tsx": "^4.20.6",
"typescript": "^5.0.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}