Files
archy/packages/app/package.json
T
Dorian 43ca3a7837 feat(playwright): integrate Playwright for end-to-end testing and update .gitignore
- Added Playwright as a development dependency for end-to-end testing.
- Updated package.json to include test scripts for Playwright.
- Enhanced .gitignore to exclude Playwright test results and cache files.
- Improved content extraction logic in various components to handle new content types.

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

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": "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",
"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": "latest",
"plyr": "^3.8.4",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@tailwindcss/vite": "latest",
"@vitejs/plugin-vue": "latest",
"duck-duck-scrape": "^2.2.7",
"eslint": "latest",
"rss-parser": "^3.13.0",
"tailwindcss": "latest",
"tsx": "^4.21.0",
"typescript": "~5.8.0",
"vite": "latest",
"vite-plugin-pwa": "^1.2.0",
"@playwright/test": "^1.49.0",
"vitest": "latest",
"vue-tsc": "latest"
}
}