forked from MarlBurroW/kinbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.42 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.42 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "kinbot",
"version": "0.32.1",
"type": "module",
"description": "Self-hosted platform of specialized AI agents (Kins) with persistent identity, memory, tools, and collaboration",
"license": "AGPL-3.0-only",
"author": "marlburrow",
"homepage": "https://marlburrow.github.io/kinbot",
"repository": {
"type": "git",
"url": "https://github.com/MarlBurroW/kinbot.git"
},
"bugs": {
"url": "https://github.com/MarlBurroW/kinbot/issues"
},
"keywords": [
"ai-agents",
"kins",
"self-hosted",
"llm",
"multi-agent",
"bun",
"hono",
"react",
"sqlite"
],
"scripts": {
"dev": "concurrently -n client,server -c blue,green \"bun run dev:client\" \"bun run dev:server\"",
"dev:client": "vite",
"dev:server": "bun --watch src/server/index.ts",
"build": "vite build",
"start": "bun src/server/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"test": "bun test",
"test:e2e": "npx playwright test",
"store:validate": "bun scripts/validate-store-plugins.ts",
"store:create": "bun scripts/create-store-plugin.ts",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "latest",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.9",
"husky": "^9.1.7",
"lint-staged": "^16.3.0",
"vite": "^7.3.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.45",
"@ai-sdk/google": "^3.0.29",
"@ai-sdk/openai": "^3.0.30",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language-data": "^6.5.2",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hono/node-server": "^1.19.9",
"@hookform/resolvers": "^5.2.2",
"@lobehub/icons": "^5.0.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"@mozilla/readability": "^0.6.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.0",
"@uiw/react-codemirror": "^4.25.4",
"ai": "^6.0.91",
"better-auth": "^1.4.18",
"better-sqlite3": "^12.6.2",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"croner": "^10.0.1",
"cronstrue": "^3.12.0",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.0",
"i18next": "^25.8.11",
"linkedom": "^0.18.12",
"lucide-react": "^0.577.0",
"next-themes": "^0.4.6",
"pdf-parse": "^2.4.5",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"puppeteer-core": "^24.37.5",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-easy-crop": "^5.5.6",
"react-hook-form": "^7.71.1",
"react-i18next": "^16.5.4",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^2.0.7",
"sqlite-vec": "^0.1.7-alpha.2",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0",
"tw-animate-css": "^1.4.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
}
}