-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 959 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"scripts": {
"setup-repo": "bash _tools/setup-repo.sh",
"check": "pnpm run check:go && pnpm run check:cli",
"check:go": "CGO_ENABLED=0 go build ./...",
"check:cli": "pnpm --filter @effect/tsgo check",
"changeset": "changeset",
"changeset:version": "changeset version && bash _tools/version-prepare.sh",
"changeset:publish": "changeset publish",
"lint": "CGO_ENABLED=0 golangci-lint run ./...",
"test": "pnpm run test:go && pnpm run test:cli",
"test:go": "CGO_ENABLED=0 go test ./...",
"test:cli": "pnpm --filter @effect/tsgo test",
"build": "pnpm run build:go && pnpm run build:cli",
"build:go": "CGO_ENABLED=0 go build -o tsgo ./typescript-go/cmd/tsgo",
"build:cli": "pnpm --filter @effect/tsgo build",
"release:prepare": "bash _tools/release-prepare.sh"
},
"devDependencies": {
"@changesets/cli": "^2.30.0"
}
}