tidaldb/applications/iknowyou/package.json
Alan Kahn 8b39409901 feat(iknowyou): add SSH tunnel script, Synap space header, and hydration fix
- Add tunnel.sh for SSH tunneling to vLLM server (port 8000 is
  firewalled, tunnel required for local dev)
- Add dev:tunnel script to package.json for running dev with tunnel
- Add SYNAP_SPACE env var support to synap.ts, sends X-Memory-Space-Id
  header when set
- Fix SSR hydration mismatch in person-switcher by deferring personId
  render until client mount

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 11:18:34 -05:00

31 lines
807 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'",
"dev:tunnel": "./tunnel.sh && next dev -p 59521",
"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"
}
}