Files
archy/packages/app/package.json
T
Dorian ece4b8256f feat(app): enhance theme support and improve PWA integration
- Updated the app to support light and dark themes with appropriate CSS classes.
- Enhanced PWA configuration with manifest details and caching strategies.
- Improved the chat UI with dynamic theme adjustments for various components.
- Added new meta tags for better mobile web app experience.
- Refactored environment variables to include new Anthropic token.
- Updated package dependencies for better compatibility and performance.

Made-with: Cursor
2026-03-02 16:34:44 +00:00

38 lines
922 B
JSON

{
"name": "@aiui/app",
"version": "0.1.0",
"private": true,
"description": "AIUI reference application",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx server/claude-proxy.ts & vite",
"dev:vite": "vite",
"dev:proxy": "tsx server/claude-proxy.ts",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint src/",
"typecheck": "vue-tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@aiui/core": "workspace:*",
"pinia": "latest",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@tailwindcss/vite": "latest",
"@vitejs/plugin-vue": "latest",
"eslint": "latest",
"tailwindcss": "latest",
"tsx": "^4.21.0",
"typescript": "~5.8.0",
"vite": "latest",
"vite-plugin-pwa": "^1.2.0",
"vitest": "latest",
"vue-tsc": "latest"
}
}