-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
72 lines (72 loc) · 1.88 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
{
"name": "@unisat/ord-utils",
"version": "0.4.0",
"description": "Ordinals Utils",
"keywords": [
"bitcoin",
"keyring"
],
"homepage": "https://github.com/unisat-wallet/ord-utils#readme",
"bugs": {
"url": "https://github.com/unisat-wallet/ord-utils/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unisat-wallet/ord-utils.git"
},
"author": "Kervin",
"license": "ISC",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"/es",
"/lib"
],
"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",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.0.5",
"bignumber.js": "^9.1.1",
"bitcoinjs-lib": "^6.1.0",
"bs58check": "^2.1.2",
"ecpair": "^2.1.0"
},
"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",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"glob": "^7.1.7",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-typescript": "*",
"mocha": "^9.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.3",
"watch": "^1.0.2",
"watchify": "^4.0.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}