orca/package.json

85 lines
2.7 KiB
JSON
Raw Normal View History

{
"name": "orca",
2026-03-20 22:17:38 +00:00
"version": "1.0.10",
"description": "An Electron application with React and TypeScript",
2026-03-19 07:36:36 +00:00
"homepage": "https://github.com/stablyai/orca",
"author": "stablyai",
"main": "./out/main/index.js",
"scripts": {
"format": "oxfmt --write .",
"lint": "oxlint",
"prepare": "husky",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
2026-03-19 08:25:06 +00:00
"build:icons": "bash icon/generate.sh",
2026-03-19 08:31:03 +00:00
"build:mac": "electron-vite build && electron-builder --mac",
2026-03-19 07:36:36 +00:00
"build:linux": "electron-vite build && electron-builder --linux",
"release:patch": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags"
},
"dependencies": {
2026-03-17 08:40:24 +00:00
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
2026-03-17 18:10:39 +00:00
"@tanstack/react-virtual": "^3.13.23",
2026-03-17 05:27:51 +00:00
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
2026-03-17 04:53:49 +00:00
"electron-updater": "^6.3.9",
2026-03-17 05:27:51 +00:00
"lucide-react": "^0.577.0",
2026-03-17 04:53:49 +00:00
"node-pty": "^1.1.0",
2026-03-17 05:27:51 +00:00
"radix-ui": "^1.4.3",
"restty": "github:nwparker/restty#orca/desktop-word-line-selection",
2026-03-17 05:27:51 +00:00
"shadcn": "^4.0.8",
2026-03-17 08:40:24 +00:00
"simple-git": "^3.33.0",
2026-03-17 05:27:51 +00:00
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
2026-03-17 04:53:49 +00:00
"zustand": "^5.0.12"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^2.0.0",
2026-03-17 05:27:51 +00:00
"@tailwindcss/vite": "^4.2.1",
2026-03-17 03:32:48 +00:00
"@types/node": "^25.5.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
2026-03-17 03:32:48 +00:00
"electron": "^41.0.2",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
2026-03-17 05:27:51 +00:00
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.2.6"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mts,cts}": [
"oxlint",
"oxfmt --write"
],
"*.{json,css,html,yaml,yml,md}": [
"oxfmt --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
2026-03-17 04:53:49 +00:00
"esbuild",
"node-pty"
]
}
}