-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.17 KB
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
30
31
32
33
{
"name": "tracecase",
"version": "0.1.0",
"private": true,
"description": "Agent eval + replay harness. CI for AI agents: record runs, replay against prompt/model changes, catch regressions and unsafe tool calls.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "node --test test/*.test.mjs",
"lint": "next lint",
"cf:build": "NODE_OPTIONS=--no-deprecation opennextjs-cloudflare build",
"cf:preview": "NODE_OPTIONS=--no-deprecation opennextjs-cloudflare build && NODE_OPTIONS=--no-deprecation opennextjs-cloudflare preview",
"deploy": "NODE_OPTIONS=--no-deprecation opennextjs-cloudflare build && NODE_OPTIONS=--no-deprecation opennextjs-cloudflare deploy"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.19.11",
"@supabase/supabase-js": "^2.43.5",
"next": "^16.3.0-canary.48",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.5.15",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"wrangler": "^4.98.0"
}
}