-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.86 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
{
"name": "@samouraiwallet/bip47",
"version": "1.1.0",
"engines": {
"node": ">=18.14.0"
},
"description": "A set of utilities for working with BIP47 and bitcoinjs-lib",
"keywords": [
"bitcoin",
"bitcoinjs",
"bitcoinjs-lib",
"bip47",
"bip-47",
"paynym"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./utils": {
"import": "./dist/utils.js",
"types": "./dist/utils.d.ts"
}
},
"sideEffects": false,
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"typescript": "tsc --noEmit",
"lint": "eslint --ext .ts src/ test/",
"docs": "typedoc src/*.ts",
"build:clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.build.json",
"build": "pnpm run build:clean && pnpm run build:esm",
"prepack": "pnpm run lint && pnpm run typescript && pnpm run test && pnpm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Dojo-Open-Source-Project/bip47.git"
},
"bugs": {
"url": "https://github.com/Dojo-Open-Source-Project/bip47/issues"
},
"author": "Katana Cryptographic Ltd.",
"license": "LGPL-3.0",
"homepage": "https://github.com/Dojo-Open-Source-Project/bip47",
"dependencies": {
"@noble/hashes": "1.8.0",
"@scure/base": "^1.2.6",
"bip32": "5.0.0-rc.0"
},
"devDependencies": {
"@types/node": "^18.19.110",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^52.0.0",
"tiny-secp256k1": "^2.2.3",
"typedoc": "^0.28.5",
"typescript": "^5.4.5",
"vitest": "^3.1.4"
}
}