-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "pebble",
"private": true,
"version": "0.0.9",
"type": "module",
"scripts": {
"dev:frontend": "vite",
"build:frontend": "tsc && vite build",
"preview": "vite preview",
"dev": "tauri dev",
"build": "node scripts/build-tauri.mjs",
"build:windows": "tauri build --bundles nsis",
"build:macos": "tauri build --bundles app,dmg",
"build:linux": "tauri build --bundles appimage,deb,rpm",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tanstack/react-query": "^5.96.2",
"@tanstack/react-virtual": "^3.13.23",
"@tauri-apps/api": "^2.0.0",
"@tiptap/extension-placeholder": "^3.22.1",
"@tiptap/react": "^3.22.1",
"@tiptap/starter-kit": "^3.22.1",
"@types/turndown": "^5.0.6",
"dompurify": "^3.4.1",
"i18next": "^26.0.3",
"lucide-react": "^0.500.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^17.0.2",
"tiptap-markdown": "^0.9.0",
"turndown": "^7.2.4",
"zustand": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^25.5.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"jsdom": "^26.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
}
}