orca/package.json

101 lines
3.2 KiB
JSON
Raw Normal View History

{
"name": "orca",
2026-03-30 16:22:44 +00:00
"version": "1.0.67",
"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",
"test": "vitest run",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "pnpm run typecheck && electron-vite build",
"postinstall": "pnpm rebuild electron && 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:rc": "npm version prerelease --preid=rc && git push --follow-tags",
2026-03-19 07:36:36 +00:00
"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",
"@monaco-editor/react": "^4.7.0",
2026-03-17 18:10:39 +00:00
"@tanstack/react-virtual": "^3.13.23",
2026-03-21 18:34:11 +00:00
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
2026-03-17 05:27:51 +00:00
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
2026-03-21 20:37:24 +00:00
"electron-updater": "^6.8.3",
2026-03-17 05:27:51 +00:00
"lucide-react": "^0.577.0",
"monaco-editor": "^0.55.1",
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",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
2026-03-21 20:37:24 +00:00
"shadcn": "^4.1.0",
2026-03-17 08:40:24 +00:00
"simple-git": "^3.33.0",
"sonner": "^2.0.7",
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-21 20:37:24 +00:00
"@tailwindcss/vite": "^4.2.2",
2026-03-17 03:32:48 +00:00
"@types/node": "^25.5.0",
2026-03-21 20:37:24 +00:00
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
2026-03-21 20:37:24 +00:00
"@vitejs/plugin-react": "^5.2.0",
"electron": "^41.0.3",
2026-03-21 20:18:13 +00:00
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
2026-03-21 20:37:24 +00:00
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-grab": "^0.1.28",
2026-03-21 20:37:24 +00:00
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.1.1"
},
"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"
]
}
}