forked from GiMa-Maya/chains-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.43 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.43 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
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": "@xdefi-tech/chains-bitcoin",
"version": "2.0.11",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/XDeFi-tech/chains/",
"license": "MIT",
"files": [
"dist",
"CHANGELOG.md",
"README.md"
],
"devDependencies": {
"jest": "27.5.1",
"jest-environment-jsdom": "27.5.1",
"jest-watch-typeahead": "1.0.0",
"ts-jest": "27.1.4",
"tsup": "6.6.3",
"typescript": "4.8.3"
},
"dependencies": {
"@ledgerhq/hw-app-btc": "10.0.0",
"@ledgerhq/hw-transport": "6.30.3",
"@ledgerhq/hw-transport-mocker": "6.28.3",
"@ledgerhq/hw-transport-webhid": "6.28.3",
"@noble/curves": "1.3.0",
"@scure/bip32": "1.3.3",
"@scure/btc-signer": "1.2.1",
"@trezor/connect-web": "9.1.4",
"@xdefi-tech/chains-core": "*",
"@xdefi-tech/chains-graphql": "*",
"@xdefi-tech/chains-utxo": "*",
"axios": "1.3.4",
"bignumber.js": "9.1.2",
"bip32": "2.0.4",
"bip39": "3.1.0",
"bitcoinjs-lib": "5.2.0",
"coinselect": "3.1.13",
"eslint-config-custom": "*",
"reflect-metadata": "0.1.13",
"rimraf": "4.4.0",
"rxjs": "7.8.0",
"tiny-secp256k1": "2.2.1",
"ts-node": "10.7.0"
},
"scripts": {
"build": "tsup --minify --clean",
"publish:packages": "npm publish --tag $GITHUB_REF",
"watch": "tsup --watch",
"coverage": "jest --coverageReporters='json-summary' --coverage",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rimraf dist .turbo node_modules"
},
"type": "commonjs",
"tsup": {
"entry": [
"src/signers/web.ts",
"src/signers/react-native.ts",
"src/index.ts"
],
"outDir": "dist",
"format": "cjs",
"splitting": false,
"dts": true,
"shims": true,
"types": [
"./dist/signers/web.d.ts",
"./dist/signers/react-native.d.ts",
"./dist/index.d.ts"
],
"platform": "browser",
"target": "ES6"
},
"jest": {
"setupFiles": [
"./jest-setup-file.ts"
],
"preset": "ts-jest/presets/js-with-ts",
"transform": {
".+\\.(t|j)s$": "ts-jest"
},
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"testEnvironment": "jsdom",
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
},
"testTimeout": 15000
}
}