-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
73
{
"name": "bitcoin-sdk-js",
"version": "1.0.1",
"description": "Bitcoin TypeScript/JavaScript Library for Node, Browser and Mobile.",
"type": "module",
"keywords": [
"bitcoin",
"bitcoin-sdk",
"bitcoin-js",
"bitcoinjs",
"bitcoin-sdk-js",
"bitcoin-ts",
"segwit",
"taproot",
"tapscript",
"multisig",
"contract",
"bip322",
"bitcoin-message"
],
"repository": {
"type": "git",
"url": "https://github.com/ChrisCho-H/bitcoin-sdk-js.git"
},
"main": "./lib/cjs/index.cjs",
"scripts": {
"compile": "tsc -p tsconfig.esm.json",
"compile:cjs": "tsc -p tsconfig.cjs.json",
"test": "c8 --reporter=html --reporter=text --all=true --include=lib/esm/src/*.js mocha lib/esm/test/**/*.js",
"test:cjs": "c8 --reporter=html --reporter=text --all=true --include=lib/cjs/src/*.js mocha lib/cjs/test/**/*.js",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --ignore-path ./.eslintignore",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" --ignore-path ./.eslintignore",
"format": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --ignore-path ./.prettierignore",
"format:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" --ignore-path ./.prettierignore"
},
"author": "Chris Hyunhum Cho <[email protected]>",
"dependencies": {
"@noble/curves": "^1.2.0",
"@noble/hashes": "^1.3.2",
"bech32": "^2.0.0",
"bs58": "^5.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"c8": "^7.12.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.1.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"exports": {
".": {
"require": {
"types": "./lib/cjs/index.d.cts",
"default": "./lib/cjs/index.cjs"
},
"import": {
"types": "./lib/esm/index.d.mts",
"default": "./lib/esm/index.mjs"
}
}
},
"module": "./lib/esm/index.mjs",
"types": "./lib/esm/index.d.mts",
"sideEffects": false,
"license": "MIT"
}