-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.7 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": "haunting-things",
"version": "1.0.4",
"private": false,
"type": "module",
"description": "haunting things are haunting everywhere",
"license": "MIT",
"main": "dist-server/server/index.js",
"bin": {
"haunting-things": "bin/haunting-things.js"
},
"files": [
".node-version",
".nvmrc",
"bin/",
"dist/",
"dist-server/",
"scripts/",
"README.md",
"LICENSE",
"package.json"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22 <23",
"npm": ">=10"
},
"scripts": {
"dev": "tsx scripts/check-node-version.ts && tsx scripts/ensure-native-deps.ts && vite build --config vite.renderer.config.ts && tsx watch src/server/index.ts",
"check": "tsx scripts/check-node-version.ts && tsx scripts/ensure-native-deps.ts && tsx scripts/check-renderer-css.ts && eslint . && tsc --noEmit && vitest run",
"build": "tsx scripts/check-node-version.ts && tsx scripts/ensure-native-deps.ts && tsx scripts/check-renderer-css.ts && vite build --config vite.renderer.config.ts && tsx scripts/build-server.ts"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.18.2",
"@modelcontextprotocol/sdk": "^1.20.0",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-dropdown-menu": "^2.1.17",
"@radix-ui/react-radio-group": "^1.4.0",
"@radix-ui/react-scroll-area": "^1.2.11",
"@radix-ui/react-select": "^2.3.0",
"@radix-ui/react-slot": "^1.2.5",
"@tailwindcss/vite": "^4.3.1",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookie": "^1.0.2",
"cookie-parser": "^1.4.7",
"express": "^5.1.0",
"gpt-tokenizer": "^3.4.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^1.18.0",
"pino": "^10.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.1",
"ulid": "^3.0.2",
"ws": "^8.18.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cookie": "^1.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.3.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.7.0",
"electron": "^37.10.3",
"esbuild": "^0.25.11",
"eslint": "^10.7.0",
"globals": "^17.7.0",
"tsx": "^4.19.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.65.0",
"vite": "^6.4.1",
"vitest": "^4.0.18"
}
}