Files
learning-platform/app/services/ingestion/package.json
RaymondVerhoef 8684ffa35b feat: add new page and migration scripts for access rules and collections
- Introduced new page component for library topics with type checks.
- Added migration scripts to update access rules for various collections including badges, curriculum versions, and themes.
- Implemented PocketBase integration for managing collection access rules dynamically.
- Ensured proper type validation for page props and metadata generation functions.
2026-05-23 22:26:40 +02:00

35 lines
836 B
JSON

{
"name": "ingestion",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"migrate": "tsx src/migrations/001_initial_schema.ts",
"migrate:qdrant": "tsx src/migrations/002_qdrant_setup.ts",
"migrate:rules": "tsx src/migrations/003_access_rules.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24",
"@fastify/cors": "^9.0.1",
"@qdrant/js-client-rest": "^1.9",
"fastify": "^4",
"openai": "^4",
"pdf-parse": "^1.1",
"pocketbase": "^0.21",
"uuid": "^9",
"zod": "^3"
},
"devDependencies": {
"@types/node": "^20",
"@types/pdf-parse": "^1.1",
"@types/uuid": "^9",
"dotenv": "^16",
"pdfkit": "^0.18.0",
"tsx": "^4",
"typescript": "^5"
}
}