-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "notedb",
"version": "0.1.0",
"private": true,
"description": "Local-first desktop note database backed by SQLite.",
"license": "MIT",
"keywords": [
"notes",
"sqlite",
"tauri",
"local-first",
"knowledge-graph",
"machine-learning"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tauri": "tauri"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@types/d3-force": "^3.0.10",
"d3-force": "^3.0.0",
"lucide-react": "^1.20.0",
"next": "^16.2.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/node": "^20.14.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
}
}