-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.21 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@unisat/wallet-toolkit",
"version": "0.1.0",
"description": "UniSat Wallet Toolkit - Modular Bitcoin Wallet Components",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --no-stream",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"clean": "pnpm -r clean",
"typecheck": "pnpm -r typecheck",
"dev": "pnpm -r dev",
"affected:packages": "node scripts/affected-packages.js",
"mobile:doctor": "./apps/unisat-wallet-mobile/scripts/doctor.sh",
"mobile:bootstrap": "./scripts/bootstrap-mobile.sh"
},
"keywords": [
"bitcoin",
"wallet",
"toolkit",
"keyring",
"unisat",
"ordinals",
"brc20",
"modular"
],
"author": "UniSat Team",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@changesets/cli": "^2.29.6",
"@humanwhocodes/config-array": "^0.13.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"bitcoinjs-lib": "^6.1.6",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"lerna": "^9.0.4",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"tiny-secp256k1": "^2.2.1",
"tsup": "^7.0.0",
"typescript": "^5.0.0",
"vitest": "^0.34.0"
},
"engines": {
"node": ">=20 <21",
"pnpm": ">=8 <9"
},
"packageManager": "pnpm@8.6.0",
"dependencies": {
"@craftzdog/react-native-buffer": "^6.0.5"
},
"pnpm": {
"overrides": {
"react-redux": "^8.0.5"
},
"patchedDependencies": {
"bitcore-lib@10.0.0": "patches/bitcore-lib@10.0.0.patch",
"tiny-secp256k1@2.2.3": "patches/tiny-secp256k1@2.2.3.patch",
"metro-resolver@0.80.12": "patches/metro-resolver@0.80.12.patch",
"bitcoinjs-lib@6.1.6": "patches/bitcoinjs-lib@6.1.6.patch",
"react-native-svg-transformer@1.5.0": "patches/react-native-svg-transformer@1.5.0.patch",
"@dreson4/react-native-quick-bip39@0.0.6": "patches/@dreson4__react-native-quick-bip39@0.0.6.patch",
"asyncstorage-down@4.2.0": "patches/asyncstorage-down@4.2.0.patch",
"expo-modules-core@1.12.26": "patches/expo-modules-core@1.12.26.patch"
}
}
}