-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 869 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 869 Bytes
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
{
"name": "openpkg-ts",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run build:spec && bun run build:sdk",
"build:spec": "cd packages/spec && bun run build",
"build:sdk": "cd packages/sdk && bun run build",
"lint": "bunx biome check packages/",
"lint:fix": "bunx biome check --write packages/",
"format": "bunx biome format --write packages/",
"changeset": "changeset",
"version": "changeset version && bun install",
"release": "bun run build && NPM_TOKEN=$NPM_DOCCOV_TOKEN changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@changesets/cli": "^2.29.8",
"@types/bun": "latest",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"bunup": "^0.11.30",
"typescript": "^5.9.3"
},
"dependencies": {
"zod": "^4.3.6"
}
}