-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 741 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "piccolo",
"version": "0.0.0",
"private": true,
"description": "Minimalistic AI agent running on Cloudflare infrastructure",
"scripts": {
"check": "pnpm biome check . && pnpm -r exec tsc --noEmit",
"tsc": "pnpm -r exec tsc --noEmit",
"lint": "pnpm biome check --write .",
"test": "pnpm -r test",
"build": "pnpm -r build",
"deploy:core": "pnpm wrangler deploy --config packages/core/wrangler.jsonc",
"deploy:web": "pnpm --filter @piccolo/web-gateway run deploy"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@cloudflare/vitest-pool-workers": "^0.13.5",
"@vitest/coverage-v8": "^4.1.2",
"typescript": "^6.0.2",
"vitest": "^4.1.2",
"wrangler": "^4.78.0"
}
}