forked from SpectrAI-Initiative/InnoClaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.96 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.96 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
{
"name": "discoveryos",
"version": "0.2.0",
"private": true,
"description": "Self-hostable AI research assistant inspired by Google NotebookLM",
"keywords": [
"ai",
"research-assistant",
"rag",
"llm",
"notebooklm",
"nextjs",
"self-hosted"
],
"author": "DiscoveryOS Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/InternScience/DiscoveryOS.git"
},
"homepage": "https://InternScience.github.io/DiscoveryOS/",
"bugs": {
"url": "https://github.com/InternScience/DiscoveryOS/issues"
},
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"predev": "node scripts/check-deps.js",
"dev": "next dev",
"prebuild": "node scripts/check-deps.js",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"desktop:build": "bash scripts/build-desktop.sh",
"desktop:dev": "cd tauri && npm install && npx tauri dev"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@ai-sdk/openai": "^3.0.49",
"@ai-sdk/react": "^3.0.145",
"@codemirror/language": "^6.12.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"@huggingface/hub": "^2.11.0",
"@larksuiteoapi/node-sdk": "^1.60.0",
"@tauri-apps/api": "^2.10.1",
"@uiw/react-codemirror": "^4.25.9",
"@xyflow/react": "^12.10.2",
"ai": "^6.0.99",
"better-sqlite3": "^12.8.0",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cron-parser": "^5.5.0",
"dagre": "^0.8.5",
"drizzle-orm": "^0.45.2",
"highlight.js": "^11.11.1",
"katex": "^0.16.44",
"lucide-react": "^1.7.0",
"minimatch": "^10.2.5",
"nanoid": "^5.1.7",
"next": "16.2.2",
"next-intl": "^4.9.0",
"next-themes": "^0.4.6",
"pdf-parse": "^2.4.5",
"radix-ui": "^1.4.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.8.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sonner": "^2.0.7",
"swr": "^2.4.1",
"tailwind-merge": "^3.5.0",
"three": "^0.183.2",
"unified": "^11.0.5",
"zod": "^4.3.6"
},
"optionalDependencies": {
"canvas": "^3.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/dagre": "^0.7.54",
"@types/node": "^25",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.183.1",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"shadcn": "^4.1.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "5.9.3",
"vitest": "^4.1.2"
}
}