-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 784 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "jyry-ai",
"version": "0.1.0",
"private": true,
"description": "AI-powered Ausbildung platform — Supabase backend + Framer frontend",
"type": "module",
"scripts": {
"agent": "tsx agents/cli.ts",
"db:reset": "supabase db reset",
"db:push": "supabase db push",
"functions:serve": "supabase functions serve --env-file .env.local",
"functions:deploy": "bash scripts/deploy-functions.sh",
"local:reset": "bash scripts/reset-local.sh",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.9.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.40.0",
"@supabase/supabase-js": "^2.45.0",
"zod": "^3.23.8"
},
"engines": {
"node": ">=20"
}
}