mirror of
https://github.com/codeforreal1/compressO
synced 2026-04-21 15:47:56 +00:00
89 lines
2.7 KiB
JSON
89 lines
2.7 KiB
JSON
{
|
|
"name": "compresso",
|
|
"version": "3.0.0",
|
|
"private": true,
|
|
"author": {
|
|
"name": "Code For Real",
|
|
"url": "https://www.threads.net/@codeforreal"
|
|
},
|
|
"license": "AGPL-3.0-only",
|
|
"type": "module",
|
|
"scripts": {
|
|
"vite:dev": "vite --port=3001",
|
|
"vite:build": "vite build",
|
|
"vite:preview": "vite preview",
|
|
"vite:start": "vite",
|
|
"tauri:dev": "tauri dev",
|
|
"tauri:build": "tauri build",
|
|
"tauri:build:debug": "tauri build --debug",
|
|
"tauri:build:mac:arm64": "tauri build --target aarch64-apple-darwin",
|
|
"tauri:build:mac:x64": "tauri build --target x86_64-apple-darwin",
|
|
"tauri:build:mac": "pnpm tauri:build:mac:arm64 && pnpm tauri:build:mac:x64",
|
|
"generate:latest-json": "node scripts/generate-latest-json.mts",
|
|
"homebrew:release": "tsx scripts/homebrew-release.mts",
|
|
"pnpm:devPreinstall": "fnm use",
|
|
"postinstall": "husky install",
|
|
"lint-staged": "lint-staged",
|
|
"tsc:check": "tsc --noEmit --skipLibCheck"
|
|
},
|
|
"dependencies": {
|
|
"@heroui/react": "2.7.11",
|
|
"@heroui/use-theme": "^2.1.2",
|
|
"@internationalized/date": "^3.10.1",
|
|
"@tanstack/react-router": "^1.97.21",
|
|
"@tanstack/router-devtools": "^1.97.21",
|
|
"@tauri-apps/api": "2.0.0",
|
|
"@tauri-apps/plugin-dialog": "2.0.0",
|
|
"@tauri-apps/plugin-fs": "2.0.0",
|
|
"@tauri-apps/plugin-os": "2.0.0",
|
|
"@tauri-apps/plugin-shell": "2.0.0",
|
|
"@tauri-apps/plugin-updater": "2.0.0",
|
|
"@xzdarcy/react-timeline-editor": "^0.1.9",
|
|
"@xzdarcy/timeline-engine": "^1.0.0",
|
|
"clsx": "^2.0.0",
|
|
"framer-motion": "11.18.2",
|
|
"lodash": "^4.17.21",
|
|
"pretty-bytes": "^6.1.1",
|
|
"react": "^18",
|
|
"react-advanced-cropper": "^0.20.1",
|
|
"react-colorful": "^5.6.1",
|
|
"react-compare-slider": "^3.1.0",
|
|
"react-dom": "^18",
|
|
"react-markdown": "^10.1.0",
|
|
"react-photo-view": "^1.2.7",
|
|
"react-player": "^2.16.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"sonner": "^1.4.41",
|
|
"tailwind-merge": "^1.14.0",
|
|
"valtio": "^1.13.2",
|
|
"vaul": "^0.9.1"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.3.2",
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"@tanstack/router-plugin": "^1.97.22",
|
|
"@tauri-apps/cli": "^2.9.2",
|
|
"@types/lodash": "^4.17.4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"@vitejs/plugin-react": "^4.3.2",
|
|
"autoprefixer": "^10.4.16",
|
|
"husky": "^8.0.1",
|
|
"lint-staged": "^13.2.3",
|
|
"postcss": "^8.4.31",
|
|
"tailwindcss": "^3.4.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^6.0.3",
|
|
"vite-plugin-svgr": "^4.3.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,ts,jsx,tsx}": ["biome check --write"]
|
|
}
|
|
}
|