-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "@samouraiwallet/bitcoinjs-message",
"version": "3.0.0",
"description": "bitcoinjs-message",
"keywords": [
"bitcoinjs-message",
"bitcoin"
],
"homepage": "https://github.com/Dojo-Open-Source-Project/bitcoinjs-message",
"bugs": {
"url": "https://github.com/Dojo-Open-Source-Project/bitcoinjs-message/issues"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/Dojo-Open-Source-Project/bitcoinjs-message.git"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"typescript": "tsc --noEmit",
"lint": "ts-standard",
"lint:fix": "ts-standard --fix",
"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"
},
"dependencies": {
"@noble/hashes": "^1.4.0",
"@samouraiwallet/varuint-bitcoin": "^2.0.0",
"@scure/base": "^1.1.6"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.0",
"bitcoinjs-lib": "^6.1.5",
"ecpair": "^2.1.0",
"tiny-secp256k1": "^2.2.3",
"ts-standard": "^12.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=16.6.0"
},
"ts-standard": {
"ignore": [
"dist",
"vitest.config.ts"
]
}
}