-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.3 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.3 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
{
"name": "@filbeam/monorepo",
"version": "1.0.0",
"private": true,
"description": "FilBeam Cloudflare Workers Monorepo",
"author": "Space Meridian <filbeam@meridian.space>",
"type": "module",
"workspaces": [
"bad-bits",
"indexer",
"piece-retriever",
"tail-handler",
"terminator",
"workflows",
"usage-reporter",
"payment-settler",
"retrieval",
"stats-api",
"x402-piece-gateway"
],
"scripts": {
"build:types": "npm run build:types --workspaces --if-present",
"deploy:calibration": "npm run deploy:calibration --workspaces --if-present",
"deploy:mainnet": "npm run deploy:mainnet --workspaces --if-present",
"lint": "eslint && prettier --check . && tsc -b",
"lint:fix": "eslint --fix && prettier --write .",
"test": "npm run lint && wrangler d1 migrations apply test-db --local --cwd db && vitest run",
"update-ts-project": "node bin/update-ts-project.js"
},
"prettier": "@checkernetwork/prettier-config",
"devDependencies": {
"@checkernetwork/prettier-config": "^1.0.1",
"@cloudflare/vitest-pool-workers": "^0.12.7",
"@npmcli/map-workspaces": "^5.0.3",
"@types/node": "^25.5.0",
"neostandard": "^0.13.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "3.1.4",
"wrangler": "^4.61.0"
}
}