-
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.71 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.71 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": "honu",
"version": "0.2.0",
"private": true,
"type": "module",
"packageManager": "bun@1.4.0",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "bun run assets && tsc --noEmit && vite build",
"assets": "bun scripts/copy-assets.ts",
"tauri": "tauri",
"dev:app": "bun run assets && tauri dev",
"dev:site": "vite --config site/vite.config.ts --host 127.0.0.1",
"build:site": "bun run assets && vite build --config site/vite.config.ts",
"favicons": "bun scripts/generate-favicons.ts",
"social-card": "bun scripts/generate-social-card.ts",
"package:railway": "bun scripts/package-railway.ts",
"check": "tsc --noEmit && bun test tests && bash -n scripts/release.sh && bun scripts/check-versions.ts",
"test:e2e": "playwright test",
"verify": "bun run check && bun run build && bun run build:site && bun run test:e2e && cargo fmt --manifest-path src-tauri/Cargo.toml --check && cargo clippy --manifest-path src-tauri/Cargo.toml --locked -- -D warnings && cargo test --manifest-path src-tauri/Cargo.toml --locked"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.18.0",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-process": "^2.3.1",
"lucide-react": "^0.577.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@fontsource-variable/manrope": "^5.2.8",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.1",
"@tauri-apps/cli": "^2.10.1",
"@types/bun": "^1.3.10",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.1.4",
"sharp": "^0.34.5",
"smol-toml": "^1.8.0",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"vite": "^7.3.1"
}
}