-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.5 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.5 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
34
35
36
37
38
39
40
41
42
{
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.31.0",
"@cosmjs/amino": "0.37.0",
"@cosmjs/proto-signing": "0.37.0",
"@cosmjs/stargate": "0.37.0",
"@scure/bip32": "2.2.0",
"@swapkit/core": "^4.4.24",
"@swapkit/helpers": "^4.13.8",
"@swapkit/plugins": "^4.6.38",
"@swapkit/server": "^4.2.49",
"@swapkit/toolboxes": "^4.15.11",
"@swapkit/wallet-core": "^4.2.8",
"@swapkit/wallet-keystore": "^4.3.30",
"@types/bun": "1.3.13",
"@types/node": "25.6.0",
"ledger-bitcoin": "0.3.0",
"typescript": "6.0.3"
},
"name": "swapkit-wallets",
"overrides": { "nuqs": "2.8.9" },
"packageManager": "bun@1.3.4",
"private": true,
"scripts": {
"build": "bun run --filter './packages/*' build",
"build:ci": "bun run build && bun run build:dts",
"build:clean": "bun run --filter './packages/*' build:clean",
"build:dts": "bun run ./tools/builder/dts.ts",
"changeset": "bunx changeset",
"lint": "bun biome check --fix .",
"lint:ws": "bunx sherif@latest",
"postinstall": "bun lint:ws",
"publish-packages": "bun run build:ci && bun run ./tools/builder/set-versions.ts && bunx changeset publish",
"test": "bun test",
"type-check": "bun run --filter './packages/*' type-check",
"type-check:ci": "bun run --filter './packages/*' type-check",
"version-bump": "bunx changeset version && bun install"
},
"workspaces": ["packages/*", "playgrounds/*", "tools/*"]
}