-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1006 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1006 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
{
"name": "swapkit-wallets",
"private": true,
"packageManager": "bun@1.3.4",
"workspaces": ["packages/*", "tools/*"],
"scripts": {
"build": "bun run --filter './packages/*' build",
"build:clean": "bun run --filter './packages/*' build:clean",
"build:ci": "bun run build && bun run build:dts",
"build:dts": "bun run ./tools/builder/dts.ts",
"lint": "bunx @biomejs/biome check --fix .",
"type-check": "bun run --filter './packages/*' type-check",
"type-check:ci": "bun run --filter './packages/*' type-check",
"test": "bun test",
"changeset": "bunx changeset",
"version-bump": "bunx changeset version",
"publish-packages": "bun run build:ci && bunx changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@changesets/cli": "2.29.8",
"@cosmjs/amino": "0.37.0",
"@cosmjs/proto-signing": "0.37.0",
"@cosmjs/stargate": "0.37.0",
"@types/bun": "1.3.6",
"@types/node": "24.10.0",
"typescript": "5.9.3"
}
}