2026-03-09 13:02:11 -07:00
|
|
|
{
|
|
|
|
|
"name": "sprout",
|
|
|
|
|
"private": true,
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"type": "module",
|
2026-04-08 11:55:11 -07:00
|
|
|
"packageManager": "pnpm@10.33.0",
|
2026-03-09 13:02:11 -07:00
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite",
|
|
|
|
|
"build": "tsc && vite build",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
2026-03-13 16:26:07 -07:00
|
|
|
"check:file-sizes": "node ./scripts/check-file-sizes.mjs",
|
2026-03-09 13:02:11 -07:00
|
|
|
"lint": "biome lint .",
|
2026-03-13 16:26:07 -07:00
|
|
|
"check": "biome check . && pnpm check:file-sizes",
|
2026-03-09 13:02:11 -07:00
|
|
|
"format": "biome format --write .",
|
|
|
|
|
"preview": "vite preview",
|
2026-03-09 19:16:43 -07:00
|
|
|
"tauri": "tauri",
|
|
|
|
|
"test:e2e": "pnpm build && playwright test",
|
|
|
|
|
"test:e2e:smoke": "pnpm build && playwright test --project=smoke",
|
|
|
|
|
"test:e2e:integration": "pnpm build && playwright test --project=integration",
|
2026-03-24 13:33:45 -07:00
|
|
|
"test:e2e:report": "playwright show-report",
|
|
|
|
|
"tauri:build": "tauri build",
|
|
|
|
|
"tauri:release:config": "node scripts/build-release-config.mjs",
|
|
|
|
|
"release:dmg:publish": "node scripts/publish-dmg-to-github-release.mjs",
|
|
|
|
|
"release:updater:publish": "node scripts/publish-updater-to-github-release.mjs"
|
2026-03-09 13:02:11 -07:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-03-19 17:29:59 -07:00
|
|
|
"@emoji-mart/data": "^1.2.1",
|
|
|
|
|
"@emoji-mart/react": "^1.1.1",
|
2026-03-17 15:58:21 -07:00
|
|
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
2026-03-19 17:29:48 -07:00
|
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
2026-03-09 13:02:11 -07:00
|
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
|
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
2026-04-06 08:25:42 -07:00
|
|
|
"@radix-ui/react-focus-scope": "^1.1.8",
|
2026-03-12 16:41:20 -07:00
|
|
|
"@radix-ui/react-popover": "^1.1.15",
|
2026-03-09 13:02:11 -07:00
|
|
|
"@radix-ui/react-separator": "^1.1.8",
|
|
|
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
|
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
2026-03-09 14:49:50 -07:00
|
|
|
"@tanstack/react-query": "^5.90.21",
|
2026-04-07 12:20:42 -07:00
|
|
|
"@tanstack/react-router": "^1.168.10",
|
2026-03-09 13:02:11 -07:00
|
|
|
"@tauri-apps/api": "^2",
|
2026-03-18 13:27:15 -07:00
|
|
|
"@tauri-apps/plugin-notification": "^2.3.3",
|
2026-03-09 13:02:11 -07:00
|
|
|
"@tauri-apps/plugin-opener": "^2",
|
2026-03-24 13:33:45 -07:00
|
|
|
"@tauri-apps/plugin-process": "^2.3.1",
|
|
|
|
|
"@tauri-apps/plugin-updater": "^2.10.0",
|
2026-03-09 13:02:11 -07:00
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
2026-03-19 17:29:59 -07:00
|
|
|
"emoji-mart": "^5.6.0",
|
2026-04-07 11:26:43 -07:00
|
|
|
"jdenticon": "^3.3.0",
|
2026-03-09 13:02:11 -07:00
|
|
|
"lucide-react": "^0.577.0",
|
|
|
|
|
"react": "^19.1.0",
|
2026-03-12 14:15:57 -07:00
|
|
|
"react-diff-view": "^3.3.2",
|
2026-03-09 13:02:11 -07:00
|
|
|
"react-dom": "^19.1.0",
|
2026-03-09 16:34:56 -07:00
|
|
|
"react-markdown": "^10.1.0",
|
|
|
|
|
"remark-breaks": "^4.0.0",
|
|
|
|
|
"remark-gfm": "^4.0.1",
|
2026-04-06 16:39:42 -10:00
|
|
|
"shiki": "^4.0.2",
|
2026-04-03 18:41:31 -07:00
|
|
|
"tailwind-merge": "^3.5.0",
|
|
|
|
|
"yaml": "^2.8.3"
|
2026-03-09 13:02:11 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@biomejs/biome": "^2.4.6",
|
2026-03-09 19:16:43 -07:00
|
|
|
"@noble/hashes": "^2.0.1",
|
|
|
|
|
"@playwright/test": "^1.58.2",
|
2026-04-07 12:20:42 -07:00
|
|
|
"@tanstack/router-plugin": "^1.167.12",
|
|
|
|
|
"@tanstack/virtual-file-routes": "^1.161.7",
|
2026-03-09 13:02:11 -07:00
|
|
|
"@tauri-apps/cli": "^2",
|
|
|
|
|
"@types/react": "^19.1.8",
|
|
|
|
|
"@types/react-dom": "^19.1.6",
|
|
|
|
|
"@vitejs/plugin-react": "^4.6.0",
|
|
|
|
|
"autoprefixer": "^10.4.27",
|
2026-03-09 19:16:43 -07:00
|
|
|
"nostr-tools": "^2.23.3",
|
2026-03-09 13:02:11 -07:00
|
|
|
"postcss": "^8.5.8",
|
|
|
|
|
"tailwindcss": "^3.4.17",
|
|
|
|
|
"tailwindcss-animate": "^1.0.7",
|
2026-04-08 11:55:11 -07:00
|
|
|
"typescript": "~5.9.0",
|
2026-03-09 13:02:11 -07:00
|
|
|
"vite": "^7.0.4"
|
|
|
|
|
}
|
|
|
|
|
}
|