tidaldb/applications/iknowyou/package.json
jordan 51ac377376 refactor: extract shared SSE parser and add eslint to iknowyou
Deduplicate SSE chunk parsing from input-bar.tsx and vllm.ts into a
shared lib/sse.ts consumeSSEChunk helper. Add eslint + next lint config.
Silence monorepo lockfile warning via outputFileTracingRoot.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 16:51:48 -07:00

30 lines
753 B
JSON

{
"name": "aeries",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 59521",
"dev:engine": "cargo run -p iknowyou-engine --bin server --features synap-aux",
"dev:all": "sh -c 'npm run dev:engine & npm run dev'",
"build": "next build",
"start": "next start -p 59521",
"lint": "next lint"
},
"dependencies": {
"next": "^15.3.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.8",
"@types/node": "^22.15.21",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.12",
"tailwindcss": "^4.1.8",
"typescript": "^5.8.3"
}
}