-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.57 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
{
"name": "kylrix",
"version": "1.0.0",
"description": "Model Context Protocol (MCP) server and sovereign local-first agentic workspace ecosystem",
"homepage": "https://www.kylrix.space",
"repository": {
"type": "git",
"url": "https://github.com/Kylrix/kylrix"
},
"private": true,
"scripts": {
"dev": "next dev --turbopack -H localhost -p ${PORT:-3005}",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint . --ignore-pattern '.agents' --max-warnings 50",
"test": "echo \"No unit tests specified\" && exit 0"
},
"dependencies": {
"@ai-sdk/google": "^4.0.56",
"@ai-sdk/openai": "^4.0.50",
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.11.0",
"@codemirror/lang-markdown": "^6.5.2",
"@codemirror/language": "^6.12.4",
"@codemirror/state": "^6.7.1",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.9",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@google/generative-ai": "^0.24.1",
"@lezer/highlight": "^1.2.3",
"@noble/ed25519": "^3.1.0",
"@noble/hashes": "^2.2.0",
"@noble/secp256k1": "^3.1.0",
"@scure/base": "^2.2.0",
"@scure/bip32": "^2.2.0",
"@scure/bip39": "^2.2.0",
"@simplewebauthn/browser": "^13.2.2",
"@simplewebauthn/server": "^13.3.2",
"ai": "^7.0.83",
"appwrite": "^21.5.0",
"dexie": "^4.4.3",
"dompurify": "^3.4.7",
"framer-motion": "^12.34.3",
"hash-wasm": "^4.12.0",
"jose": "^5.10.0",
"katex": "^0.18.1",
"lucide-react": "^0.575.0",
"marked": "^18.0.4",
"next": "^16.1.6",
"node-appwrite": "^19.1.0",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hot-toast": "^2.6.0",
"rxdb": "^17.3.0",
"rxjs": "^7.8.2",
"viem": "~2.21.60",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/katex": "^0.16.8",
"@types/node": "^25.3.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.8",
"cross-env": "^10.1.0",
"eslint": "^9.39.3",
"eslint-config-next": "^16.1.6",
"eslint-plugin-unused-imports": "^4.4.1",
"happy-dom": "^20.9.0",
"knip": "^6.29.0",
"playwright": "1.62.1",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"license": "AGPL-3.0-or-later",
"packageManager": "pnpm@9.15.9"
}