Files
archy/packages/app/package.json
T
Dorian 7a0e42bf63 feat(app): integrate Jamendo API and enhance UI components
- Added Jamendo API client ID to the environment configuration for music search.
- Updated pnpm lock file to include new dependencies for enhanced functionality.
- Integrated Plyr library for improved media playback experience.
- Refactored ChatHeader, ChatInput, and ChatMessage components to utilize new styles and improve user interaction.
- Enhanced CSS styles for path-glass elements to align with the new design system.

Made-with: Cursor
2026-03-02 19:37:00 +00:00

39 lines
944 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",
"plyr": "^3.8.4",
"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"
}
}