-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.39 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "codekin",
"version": "0.7.0",
"license": "MIT",
"licenseNotes": "dompurify is dual-licensed (MPL-2.0 OR Apache-2.0); both are permissively compatible with MIT for library use. lightningcss (MPL-2.0) is a build-time-only dependency used by TailwindCSS and is not included in distributed artifacts.",
"author": "multiplier-labs",
"description": "Web UI for Claude Code sessions with multi-session support and WebSocket streaming",
"repository": {
"type": "git",
"url": "https://github.com/Multiplier-Labs/codekin"
},
"bugs": {
"url": "https://github.com/Multiplier-Labs/codekin/issues"
},
"keywords": [
"claude",
"terminal",
"ai",
"coding-assistant"
],
"type": "module",
"bin": {
"codekin": "bin/codekin.mjs"
},
"files": [
"bin/",
"dist/",
"server/dist/",
"server/workflows/",
"server/loops/"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"better-sqlite3": "^12.9.0",
"express": "^5.1.0",
"file-type": "^22.0.1",
"multer": "^2.0.0",
"ws": "^8.21.0",
"yaml": "^2.9.0"
},
"overrides": {
"undici": "^7.28.0",
"brace-expansion": "^5.0.7",
"eslint-plugin-react-hooks": {
"eslint": "$eslint"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tabler/icons-react": "^3.37.1",
"@tailwindcss/vite": "^4.2.2",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.0",
"@types/multer": "^2.1.0",
"@types/node": "^25.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.5.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"cmdk": "^1.1.1",
"dompurify": "^3.4.12",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"highlight.js": "^11.11.1",
"jsdom": "^29.0.1",
"marked": "^18.0.2",
"marked-highlight": "^2.2.4",
"react": "^19.2.0",
"react-diff-view": "^3.3.2",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"refractor": "^5.0.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.2.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.16",
"vitest": "^4.1.2"
}
}