claude-prism/package.json
delibae aafcbce9ef Enhance desktop application setup with new components and configurations
- Updated package.json to include new filters for development scripts and added built dependencies for pnpm.
- Introduced a new desktop application with essential files including index.html, package.json, and configuration files (postcss, tsconfig, vite).
- Added core components for the desktop app, including App, ProjectPicker, AssistantPanel, and UI elements like Button, Input, and DropdownMenu.
- Integrated Tauri plugins for file handling and dialog interactions.
- Enhanced Turbo configuration to include additional output paths for builds.
- Updated pnpm-lock.yaml to reflect new dependencies and versions for the desktop application.
2026-02-20 15:27:06 +09:00

28 lines
766 B
JSON

{
"name": "@open-prism/root",
"description": "Open-Source AI LaTeX writing workspace",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/assistant-ui/open-prism"
},
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:web": "pnpm turbo dev --filter=@open-prism/web --filter=@open-prism/latex-api",
"dev:desktop": "pnpm turbo dev --filter=@open-prism/desktop --filter=@open-prism/desktop-sidecar",
"lint": "pnpm exec biome check",
"lint:fix": "pnpm exec biome check --fix"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"turbo": "^2.7.6"
},
"packageManager": "pnpm@10.28.2",
"pnpm": {
"onlyBuiltDependencies": ["esbuild", "sharp"]
}
}