-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.18 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
{
"name": "openpkg-ts",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run build:spec && bun run build:sdk && bun run build:cli",
"build:spec": "cd packages/spec && bun run build",
"build:sdk": "cd packages/sdk && bun run build",
"build:cli": "cd packages/cli && bun run build",
"lint": "bunx biome check packages/",
"lint:fix": "bunx biome check --write packages/",
"test": "bun test",
"typecheck": "bun run typecheck:spec && bun run typecheck:sdk && bun run typecheck:cli",
"typecheck:spec": "cd packages/spec && bun run typecheck",
"typecheck:sdk": "cd packages/sdk && bun run typecheck",
"typecheck:cli": "cd packages/cli && bun run typecheck",
"format": "bunx biome format --write packages/",
"site:sync-schemas": "rm -rf site/schemas && cp -r packages/spec/schemas site/schemas",
"changeset": "changeset",
"version": "changeset version && bun install",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@changesets/cli": "^2.29.8",
"@types/bun": "latest",
"bunup": "^0.11.30",
"typescript": "^5.9.3"
}
}