-
Notifications
You must be signed in to change notification settings - Fork 303
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.2 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
{
"name": "@bitgo/abstract-utxo",
"version": "10.20.0",
"description": "BitGo SDK coin library for UTXO base implementation",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/esm/index.js",
"types": "./dist/cjs/src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/src/index.d.ts",
"default": "./dist/cjs/src/index.js"
}
}
},
"files": [
"dist/cjs",
"dist/esm"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "yarn tsc --build --incremental --verbose .",
"build:esm": "yarn tsc --project tsconfig.esm.json",
"fmt": "prettier --write '{src,test}/**/*.{ts,js,json}'",
"check-fmt": "prettier --check '{src,test}/**/*.{ts,js,json}'",
"clean": "rm -rf ./dist",
"lint": "eslint --quiet .",
"prepare": "npm run build",
"test": "mocha --recursive test/unit/",
"unit-test": "mocha --recursive test/unit/",
"integration-test": "mocha --recursive test/integration/"
},
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
"license": "MIT",
"engines": {
"node": ">=20 <25"
},
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git",
"directory": "modules/abstract-utxo"
},
"lint-staged": {
"*.{js,ts}": [
"yarn prettier --write",
"yarn eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"@bitgo/blockapis": "^1.13.2",
"@bitgo/sdk-api": "^1.75.5",
"@bitgo/sdk-core": "^36.35.0",
"@bitgo/utxo-core": "^1.35.0",
"@bitgo/utxo-lib": "^11.21.0",
"@bitgo/utxo-ord": "^1.28.0",
"@bitgo/wasm-utxo": "^2.1.0",
"@types/lodash": "^4.14.121",
"@types/superagent": "4.1.15",
"bignumber.js": "^9.0.2",
"debug": "^3.1.0",
"io-ts": "npm:@bitgo-forks/io-ts@2.1.4",
"lodash": "^4.17.14",
"superagent": "^9.0.1"
},
"devDependencies": {
"@bitgo/sdk-test": "^9.1.33",
"mocha": "^10.2.0"
},
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"
}