- Redesign MagazineGrid with editorial New Yorker-inspired layout - Simplify ArticleDetail and ArticleOverlay components - Enhance claude-proxy with improved content extraction - Add HTML utility for content processing - Update NewsCard styling and chat message handling - Clean up worktree references Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@aiui/app",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "AIUI reference application",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bash scripts/dev.sh",
|
|
"dev:vite": "vite",
|
|
"dev:proxy": "tsx server/claude-proxy.ts",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest run",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"lint": "eslint src/",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@aiui/core": "workspace:*",
|
|
"pinia": "^3.0.4",
|
|
"plyr": "^3.8.4",
|
|
"vue": "^3.5.29",
|
|
"vue-router": "^5.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.2.1",
|
|
"@vitejs/plugin-vue": "^6.0.4",
|
|
"duck-duck-scrape": "^2.2.7",
|
|
"eslint": "^10.0.2",
|
|
"rss-parser": "^3.13.0",
|
|
"tailwindcss": "^4.2.1",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "~5.8.0",
|
|
"vite": "^7.3.1",
|
|
"vite-plugin-pwa": "^1.2.0",
|
|
"@playwright/test": "^1.49.0",
|
|
"vitest": "^4.0.18",
|
|
"vue-tsc": "^3.2.5"
|
|
}
|
|
}
|