-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.53 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
{
"name": "@bitgo/utxo-ord",
"description": "Utilities for building ordinals with BitGo utxo-lib",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/esm/index.js",
"types": "./dist/cjs/src/index.d.ts",
"version": "1.22.22",
"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"
],
"keywords": [
"bitgo",
"utxo",
"bitcoinjs",
"bitcoin",
"ordinals"
],
"scripts": {
"prepare": "npm run build",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "yarn tsc --build --incremental --verbose .",
"build:esm": "yarn tsc --project tsconfig.esm.json",
"lint": "eslint --quiet .",
"unit-test": "mocha --recursive test",
"fmt": "prettier --write '{src,test}/**/*.{ts,js}'",
"precommit": "yarn lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git",
"directory": "modules/utxo-ord"
},
"dependencies": {
"@bitgo/sdk-core": "^36.27.0",
"@bitgo/unspents": "^0.50.14",
"@bitgo/utxo-lib": "^11.19.1"
},
"lint-staged": {
"*.{js,ts}": [
"yarn prettier --write",
"yarn eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"
}