-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.65 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
{
"name": "@gadgets/workshop-backend",
"version": "1.0.0",
"type": "module",
"main": "./src/index.ts",
"scripts": {
"dev": "echo \"run 'pnpm dev-server' in the root directory instead\" >&2 && exit 1",
"deploy": "wrangler deploy",
"build:worker": "node build-browser-runtime.mjs && pnpm exec capnweb-validate build --out .wrangler/validate",
"clean": "rm -rf dist",
"test:integration": "node build-browser-runtime.mjs && node scripts/build-format-blueprints.mjs && vitest run --config vitest.integration.config.ts",
"test:run": "node build-browser-runtime.mjs && node scripts/build-format-blueprints.mjs && vitest run && vitest run --config vitest.integration.config.ts",
"test:watch": "node build-browser-runtime.mjs && node scripts/build-format-blueprints.mjs && vitest",
"import:format-blueprint": "node --experimental-strip-types --no-warnings scripts/import-format-blueprint.mjs"
},
"dependencies": {
"@cloudflare/puppeteer": "^1.4.0",
"@earendil-works/pi-agent-core": "0.84.3",
"@earendil-works/pi-ai": "0.84.3",
"@gadgets/backend-utils": "workspace:*",
"@gadgets/error-reporting": "workspace:*",
"@gadgets/typed-storage": "workspace:*",
"@gadgets/workshop-shared": "workspace:*",
"capnweb": "catalog:",
"capnweb-validate": "catalog:",
"diff": "^8.0.4",
"diff3": "^0.0.3",
"isomorphic-git": "^1.40.0",
"jose": "^6.2.8",
"yjs": "^13.6.31",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "catalog:",
"dompurify": "^3.4.13",
"esbuild": "^0.28.1",
"typescript": "catalog:",
"vitest": "catalog:",
"wrangler": "catalog:"
}
}