-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.91 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.91 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"dependencies": {
"@scure/bip32": "2.0.1",
"@swapkit/core": "4.4.20",
"@swapkit/helpers": "4.13.0",
"@swapkit/plugins": "4.6.26",
"@swapkit/server": "4.2.37",
"@swapkit/toolboxes": "4.15.7",
"@swapkit/wallet-core": "4.2.0",
"@swapkit/wallet-keystore": "4.3.19",
"ledger-bitcoin": "0.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@changesets/changelog-github": "0.6.0",
"@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.13",
"@types/node": "24.10.0",
"typescript": "5.9.3"
},
"name": "swapkit-wallets",
"overrides": {
"@swapkit/core": "4.4.20",
"@swapkit/helpers": "4.13.0",
"@swapkit/plugins": "4.6.26",
"@swapkit/server": "4.2.37",
"@swapkit/toolboxes": "4.15.7",
"@swapkit/types": "0.7.3",
"@swapkit/wallet-core": "4.2.0",
"@swapkit/wallet-extensions": "workspace:*",
"@swapkit/wallet-hardware": "workspace:*",
"@swapkit/wallet-keystore": "4.3.19",
"@swapkit/wallet-mobile": "workspace:*",
"@swapkit/wallets": "workspace:*",
"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": "bunx @biomejs/biome check --fix .",
"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/*"]
}