@bitgo/utxo-ord 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@bitgo/utxo-ord",
3
+ "description": "Utilities for building ordinals with BitGo utxo-lib",
4
+ "main": "./dist/src/index.js",
5
+ "types": "./dist/src/index.d.ts",
6
+ "version": "1.1.0",
7
+ "files": [
8
+ "dist/**/*"
9
+ ],
10
+ "keywords": [
11
+ "bitgo",
12
+ "utxo",
13
+ "bitcoinjs",
14
+ "bitcoin",
15
+ "ordinals"
16
+ ],
17
+ "scripts": {
18
+ "prepare": "npm run build",
19
+ "build": "yarn tsc --build --incremental --verbose .",
20
+ "lint": "eslint --quiet .",
21
+ "unit-test": "mocha --recursive test",
22
+ "fmt": "prettier --write '{src,test}/**/*.{ts,js}'",
23
+ "precommit": "yarn lint-staged"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/BitGo/BitGoJS.git",
28
+ "directory": "modules/utxo-ord"
29
+ },
30
+ "dependencies": {
31
+ "@bitgo/sdk-core": "^8.0.0",
32
+ "@bitgo/unspents": "^0.12.0",
33
+ "@bitgo/utxo-lib": "^8.0.0"
34
+ },
35
+ "lint-staged": {
36
+ "*.{js,ts}": [
37
+ "yarn prettier --write",
38
+ "yarn eslint --fix"
39
+ ]
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "license": "MIT",
45
+ "gitHead": "fdabb43f7200612031c99fe4b8695c98d40c3cf7"
46
+ }