-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
98 lines (98 loc) · 2.76 KB
/
package.json
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@unisat/wallet-sdk",
"version": "1.8.0",
"description": "UniSat Wallet SDK",
"keywords": [
"bitcoin",
"keyring",
"unisat"
],
"homepage": "https://github.com/unisat-wallet/wallet-sdk#readme",
"bugs": {
"url": "https://github.com/unisat-wallet/wallet-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unisat-wallet/wallet-sdk.git"
},
"author": "cybersinsloth",
"license": "ISC",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"/es",
"/lib",
"./patches"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "rimraf lib && cross-env BABEL_ENV=cjs gulp build",
"build:esm": "rimraf es && cross-env BABEL_ENV=esm gulp build",
"build:typed": "tsc --declaration --emitDeclarationOnly --noEmit false",
"test": "mocha -r ts-node/register test/**/*.ts --timeout 300000",
"prepublishOnly": "npm run build",
"postinstall": "npx patch-package",
"lint": "eslint ./src ./test"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.0.5",
"@keystonehq/keystone-sdk": "^0.3.0",
"big-integer": "^1.6.52",
"bignumber.js": "^9.1.2",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.6",
"bitcore-lib": "^10.0.0",
"ecpair": "^2.1.0",
"hdkey": "^2.1.0",
"tiny-secp256k1": "=2.2.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/chai": "^4.2.20",
"@types/mocha": "^8.2.2",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"babel-loader": "^8.2.3",
"browserify-zlib": "^0.2.0",
"chai": "^4.3.4",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-webpack-plugin": "^4.1.0",
"glob": "^7.1.7",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-typescript": "*",
"https-browserify": "^1.0.0",
"mocha": "^9.0.2",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.2.5",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^4.5.3",
"watch": "^1.0.2",
"watchify": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^4.9.1",
"webpack-stream": "^7.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}