-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.83 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
{
"name": "copilot-debugger",
"version": "0.1.4",
"private": false,
"description": "Copilot Debugger is a local viewer for VS Code Copilot Chat transcript and debug sessions.",
"type": "module",
"author": "Mirek Holec",
"bin": {
"copilot-debugger": "./dist/server/cli.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"dev": "concurrently -n api,web -c cyan,magenta npm:dev:api npm:dev:web",
"dev:api": "tsx watch server/index.ts",
"dev:web": "vite --host 127.0.0.1",
"clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && npm run build:client && npm run build:server",
"build:client": "tsc -p tsconfig.app.json --noEmit && vite build",
"build:server": "tsc -p server/tsconfig.json",
"typecheck": "tsc -p tsconfig.app.json --noEmit && tsc -p server/tsconfig.json --noEmit",
"start": "node dist/server/index.js"
},
"engines": {
"node": ">=20.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mirekholec/copilot-debugger.git"
},
"homepage": "https://github.com/mirekholec/copilot-debugger#readme",
"bugs": {
"url": "https://github.com/mirekholec/copilot-debugger/issues"
},
"license": "MIT",
"keywords": [
"copilot",
"vscode",
"debug",
"sessions",
"viewer"
],
"dependencies": {
"chokidar": "^4.0.3",
"express": "^4.21.2",
"fast-glob": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.17.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^9.1.2",
"lucide-react": "^0.469.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^8.1.3"
}
}