forked from anomalyco/sst
-
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) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 728 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": "sst",
"workspaces": [
"www",
"platform",
"sdk/js"
],
"scripts": {
"setup": "bun install && go mod tidy && bun run build:platform && bun run build:sdk",
"build:platform": "bun run --filter @sst/platform build",
"build:cli": "go build ./cmd/sst",
"build:sdk": "bun run --cwd ./sdk/js build",
"test:cli": "go test ./...",
"typecheck": "bun run typecheck:platform && bun run typecheck:sdk",
"typecheck:platform": "tsc --noEmit -p platform/tsconfig.json",
"typecheck:sdk": "tsc --noEmit -p sdk/js/tsconfig.json",
"docs:generate": "bun run --filter www generate",
"docs:dev": "bun run --filter www dev"
},
"overrides": {
"google-protobuf": "3.21.2"
}
}