-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.5 KB
/
package.json
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
{
"name": "fpx",
"version": "1.0.0",
"description": "Local development debugging interface for Hono apps, powered by OpenTelemetry",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm run build:types && pnpm run build:source-analysis",
"build:types": "pnpm --filter @fiberplane/fpx-types build",
"build:source-analysis": "pnpm --filter @fiberplane/source-analysis build",
"build:fpx-studio": "pnpm clean:fpx-studio && pnpm build:api && pnpm build:frontend",
"build:api": "pnpm --filter @fiberplane/studio build",
"build:www": "pnpm --filter www build",
"build:frontend": "pnpm --filter @fiberplane/studio-frontend build && cp -r studio/dist/* api/dist",
"dev:api": "pnpm --filter @fiberplane/studio dev",
"dev:www": "pnpm --filter www dev",
"dev:frontend": "pnpm --filter @fiberplane/studio-frontend dev",
"clean:fpx-studio": "pnpm clean:api && pnpm clean:frontend",
"clean:api": "rimraf api/dist",
"clean:frontend": "rimraf studio/dist",
"format": "biome check . --write",
"lint": "pnpm --recursive lint",
"typecheck": "pnpm --recursive typecheck"
},
"repository": {
"type": "git",
"url": "https://github.com/fiberplane/fpx.git"
},
"bugs": {
"url": "https://github.com/fiberplane/fpx/issues"
},
"homepage": "https://github.com/fiberplane/fpx#readme",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"pkg-pr-new": "^0.0.20",
"rimraf": "^5.0.7",
"typescript": "^5.5.4",
"wrangler": "^3.73.0"
}
}