-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.76 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
{
"name": "kiro-history",
"version": "0.7.0",
"description": "View Kiro CLI conversation history in your browser",
"type": "module",
"bin": {
"kiro-history": "./dist/cli.js"
},
"scripts": {
"build:server": "tsc",
"build:web": "cd ui && vite build",
"build": "npm run build:server && npm run build:web",
"dev": "tsx watch server/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"keywords": [
"cli",
"history",
"kiro",
"conversation",
"chat"
],
"author": "Ajaykumar Prathap",
"license": "MIT",
"files": [
"dist",
"ui/dist"
],
"dependencies": {
"@hono/node-server": "^1.19.9",
"@tailwindcss/vite": "^4.1.18",
"@types/better-sqlite3": "^7.6.13",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.24",
"better-sqlite3": "^12.6.2",
"clsx": "^2.1.1",
"commander": "^14.0.3",
"hono": "^4.11.8",
"lucide-react": "^0.563.0",
"open": "^11.0.0",
"postcss": "^8.5.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@types/node": "^25.2.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"fast-check": "^4.5.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pajaydev/kiro-history.git"
},
"homepage": "https://github.com/pajaydev/kiro-history",
"bugs": {
"url": "https://github.com/pajaydev/kiro-history/issues"
}
}