-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.73 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
{
"name": "betterprompt-server",
"version": "1.1.0",
"description": "Self-hosted AI session analysis with Next.js server and Claude Code plugin",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/ app/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:integration": "vitest run tests/integration.test.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "npx playwright test --config tests/e2e/playwright.config.ts",
"test:e2e:server": "next start -p 3000",
"build:pages": "bash scripts/build-pages.sh"
},
"keywords": [
"claude",
"claude-code",
"ai",
"collaboration",
"ai-builders",
"productivity",
"analysis"
],
"author": "BetterPrompt",
"license": "MIT",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/onlycastle/BetterPrompt"
},
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@tanstack/react-query": "^5.91.0",
"better-sqlite3": "^12.8.0",
"lucide-react": "^0.577.0",
"next": "^16.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"youtube-transcript": "^1.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@types/better-sqlite3": "^7.6.0",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.5.0",
"@types/react": "19.2.14",
"eslint": "^10.0.3",
"jsdom": "^29.0.0",
"memfs": "^4.56.11",
"playwright": "^1.57.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}