-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.76 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": "scratchwork",
"version": "0.3.0",
"private": true,
"type": "module",
"description": "Scratchwork — the single-file Markdown renderer (renderer/) and the scratchwork dev CLI (cli/).",
"workspaces": [
"renderer",
"shared",
"cli",
"server/core",
"server/deploy-aws",
"server/deploy-cloudflare",
"server/deploy-local",
"deploy/*",
"create",
"scratchwork.dev/server",
"e2e"
],
"scripts": {
"build": "cd cli && bun run build",
"build:renderer": "cd renderer && bun run build",
"ci": "bun scripts/check-boundaries.ts && bun scripts/check-versions.ts && bun scripts/each-workspace.ts ci && bun scripts/check-install-sh.ts && bun scripts/check-npm-pack.ts && bun scripts/generate-assets.ts && bun scripts/check-generated-fresh.ts",
"deploy:generic-aws": "cd deploy/generic-aws && bun run deploy",
"deploy:cloudflare-vanilla": "cd deploy/cloudflare-vanilla && bun run deploy",
"deploy:cloudflare-access": "cd deploy/cloudflare-access && bun run deploy",
"deploy:scratchwork-dev": "cd scratchwork.dev/server && bun run deploy",
"local:generic-aws": "cd deploy/generic-aws && bun run local",
"local:cloudflare": "cd server/deploy-cloudflare && bun run dev",
"local:cloudflare-access": "cd deploy/cloudflare-access && bun run local",
"local:local-dev": "cd deploy/local-dev && bun run local",
"local:cloudflare-vanilla": "cd deploy/cloudflare-vanilla && bun run local",
"local:scratchwork-dev": "cd scratchwork.dev/server && bun run local",
"dev:renderer": "cd renderer && bun run dev",
"test": "bun scripts/each-workspace.ts test",
"typecheck": "bun scripts/each-workspace.ts typecheck"
},
"dependencies": {
"@effect/platform": "0.96.2",
"effect": "3.21.4"
}
}