-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
{
"name": "claudereview",
"version": "0.1.3",
"description": "Share Claude Code, Codex, and Gemini CLI sessions for code review with encryption",
"type": "module",
"bin": {
"ccshare": "./src/cli.ts"
},
"files": [
"src/**/*.ts",
"README.md"
],
"scripts": {
"dev": "bun run --watch src/server.ts",
"start": "bun run src/server.ts",
"cli": "bun run src/cli.ts",
"db:push": "drizzle-kit push --config=drizzle.config.ts",
"db:generate": "drizzle-kit generate --config=drizzle.config.ts",
"db:studio": "drizzle-kit studio --config=drizzle.config.ts"
},
"keywords": [
"claude",
"claude-code",
"codex",
"gemini",
"gemini-cli",
"code-review",
"session-sharing",
"encryption"
],
"author": "Vignesh Natarajan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vignesh07/claudereview.git"
},
"homepage": "https://claudereview.com",
"bugs": {
"url": "https://github.com/vignesh07/claudereview/issues"
},
"engines": {
"bun": ">=1.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"drizzle-kit": "^0.31.8"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@hono/node-server": "^1.19.7",
"argon2": "^0.44.0",
"commander": "^14.0.2",
"drizzle-orm": "^0.45.1",
"hono": "^4.11.2",
"nanoid": "^5.1.6",
"postgres": "^3.4.7",
"sharp": "^0.34.5",
"zod": "^4.2.1"
}
}