copilot-debugger 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "copilot-debugger",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "Copilot Debugger is a local viewer for VS Code Copilot Chat transcript and debug sessions.",
6
+ "type": "module",
7
+ "author": "Mirek Holec",
8
+ "bin": {
9
+ "copilot-debugger": "./dist/server/cli.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "scripts": {
17
+ "dev": "concurrently -n api,web -c cyan,magenta npm:dev:api npm:dev:web",
18
+ "dev:api": "tsx watch server/index.ts",
19
+ "dev:web": "vite --host 127.0.0.1",
20
+ "clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\"",
21
+ "build": "npm run clean && npm run build:client && npm run build:server",
22
+ "build:client": "tsc -p tsconfig.app.json --noEmit && vite build",
23
+ "build:server": "tsc -p server/tsconfig.json",
24
+ "typecheck": "tsc -p tsconfig.app.json --noEmit && tsc -p server/tsconfig.json --noEmit",
25
+ "start": "node dist/server/index.js"
26
+ },
27
+ "engines": {
28
+ "node": ">=20.9"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/mirekholec/copilot-debugger.git"
33
+ },
34
+ "homepage": "https://github.com/mirekholec/copilot-debugger#readme",
35
+ "bugs": {
36
+ "url": "https://github.com/mirekholec/copilot-debugger/issues"
37
+ },
38
+ "license": "MIT",
39
+ "keywords": [
40
+ "copilot",
41
+ "vscode",
42
+ "debug",
43
+ "sessions",
44
+ "viewer"
45
+ ],
46
+ "dependencies": {
47
+ "chokidar": "^4.0.3",
48
+ "express": "^4.21.2",
49
+ "fast-glob": "^3.3.3"
50
+ },
51
+ "devDependencies": {
52
+ "@types/express": "^4.17.21",
53
+ "@types/node": "^20.17.10",
54
+ "@types/react": "^18.3.18",
55
+ "@types/react-dom": "^18.3.5",
56
+ "@vitejs/plugin-react": "^6.0.3",
57
+ "concurrently": "^9.1.2",
58
+ "lucide-react": "^0.469.0",
59
+ "react": "^18.3.1",
60
+ "react-dom": "^18.3.1",
61
+ "tsx": "^4.19.2",
62
+ "typescript": "^5.7.2",
63
+ "vite": "^8.1.3"
64
+ }
65
+ }