-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.13 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
{
"name": "copilot-lens",
"version": "1.2.2",
"description": "A local dashboard to visualize and analyze your GitHub Copilot CLI sessions",
"main": "dist/server.js",
"bin": {
"copilot-lens": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"copilot",
"github",
"cli",
"dashboard",
"sessions",
"analytics"
],
"author": "pavanvamsi3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pavanvamsi3/copilot-lens"
},
"files": [
"dist/",
"public/",
"README.md"
],
"dependencies": {
"better-sqlite3": "^12.6.2",
"express": "^5.2.1",
"ink": "^3.2.0",
"react": "^17.0.2",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^25.2.2",
"@types/react": "^17.0.91",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}