Files
archy/packages/core/package.json
T
DorianandClaude Opus 4.6 c82b4ef54f feat(app): redesign magazine grid, improve article views and proxy
- 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>
2026-03-02 23:50:46 +00:00

38 lines
950 B
JSON

{
"name": "@aiui/core",
"version": "0.1.0",
"description": "AIUI core component library - rich AI content surface renderers",
"license": "MIT",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./components/*": "./src/components/*",
"./composables/*": "./src/composables/*",
"./plugins/*": "./src/plugins/*",
"./types/*": "./src/types/*",
"./styles/*": "./src/styles/*"
},
"scripts": {
"dev": "vite build --watch",
"build": "vue-tsc --noEmit && vite build",
"test": "vitest run",
"lint": "eslint src/",
"typecheck": "vue-tsc --noEmit",
"clean": "rm -rf dist"
},
"peerDependencies": {
"vue": "^3.5.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.4",
"vite": "^7.3.1",
"vue": "^3.5.29",
"vue-tsc": "^3.2.5",
"vitest": "^4.0.18",
"eslint": "^10.0.2",
"typescript": "~5.8.0"
}
}