-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 929 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
30
{
"name": "dev-stats",
"type": "module",
"scripts": {
"dev": "npm run sync:agent-skill && node scripts/run-vite-dev.mjs",
"sync:agent-skill": "node scripts/sync-dev-stats-agent-skill.mjs",
"check:agent-skill": "node scripts/sync-dev-stats-agent-skill.mjs --check",
"build": "npm run sync:agent-skill && vite build",
"preview": "vite preview",
"test:concurrency": "node --test test/concurrency.test.mjs",
"typecheck": "npm run check:agent-skill && tsc --noEmit"
},
"dependencies": {
"@edgeone/pages-blob": "^0.0.14",
"@openai/agents": "^0.12.0",
"@vitejs/plugin-react": "^5.1.0",
"openai": "^6.45.0",
"qrcode": "^1.5.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"vite": "^7.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"typescript": "6.0.3"
}
}