-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.19 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "sema-project-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"verify": "npm run test:photo && npm run test:live && npm run test:voice && npm run test:ai && npm run lint && npm run typecheck && npm run build",
"test:ai": "node --import tsx lib/ai/evals/runLocalEvals.ts",
"test:voice": "node --import tsx lib/voice/evals/runVoiceEvals.ts",
"test:live": "node --import tsx lib/live/evals/runLiveEvals.ts",
"test:photo": "node --import tsx lib/photo/evals/runPhotoEvals.ts",
"test:azure-photo:live": "node --import tsx lib/photo/evals/runAzurePhotoLiveSmoke.ts",
"test:live:diagnose": "node --import tsx lib/live/evals/runLiveDiagnostic.ts",
"test:live:constraints": "node --import tsx lib/live/evals/runLiveConstraintProbes.ts",
"test:live:preflight": "node --import tsx lib/live/evals/runLivePreflight.ts",
"test:live:real": "node --import tsx lib/live/evals/runRealLiveSmoke.ts",
"test:live:write-tool": "node --import tsx lib/live/evals/runWriteToolProbeParent.ts",
"test:live:write-tool:child": "node --import tsx lib/live/evals/runWriteToolProbeChild.ts",
"test:live:write-tool:lifecycle": "node --import tsx lib/live/evals/runWriteToolProbeLifecycleEvals.ts",
"test:ai:model": "node --import tsx lib/ai/evals/testModelPreflight.ts",
"test:ai:live": "node --import tsx lib/ai/evals/runLiveSmoke.ts",
"test:ai:live:story:debug": "node --import tsx lib/ai/evals/debugLiveStory.ts",
"test:ai:live:packet": "node --import tsx lib/ai/evals/testLivePacketDraft.ts"
},
"dependencies": {
"@google/genai": "^2.9.0",
"buffer": "6.0.3",
"jspdf": "^4.2.1",
"lucide-react": "latest",
"next": "latest",
"react": "latest",
"react-dom": "latest",
"zod": "^4.4.3"
},
"devDependencies": {
"@next/env": "^16.2.9",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"autoprefixer": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"postcss": "latest",
"tailwindcss": "^3.4.17",
"tsx": "^4.22.4",
"typescript": "latest"
}
}