-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "shybit-cli",
"version": "1.0.0",
"description": "a simple bitcoin cli toolkit",
"exports": "./src/index.ts",
"engines": {
"node": ">=16"
},
"type": "module",
"scripts": {
"build": "npx tsc --project tsconfig.build.json",
"start": "node ./build/src/index.js",
"dev": "npm run build && npm run start",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"clean": "if [ -d build ]; then echo 'cleaning outDir...'; rm -rf build; fi",
"prebuild": "npm run clean"
},
"author": "Abba Adamu",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"@types/babel__preset-env": "^7.9.6",
"@types/cli-table": "^0.3.4",
"@types/copy-paste": "^1.1.33",
"@types/figlet": "^1.5.8",
"@types/node-notifier": "^8.0.5",
"@types/prompt-sync": "^4.2.3",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.5",
"chalk": "4",
"cli-table": "^0.3.11",
"copy-paste": "^1.5.3",
"ecpair": "^2.1.0",
"figlet": "^1.7.0",
"node-notifier": "^10.0.1",
"ora": "^8.0.1",
"prompt-sync": "^4.2.0",
"raw-transaction-decoder": "^1.0.6",
"tiny-secp256k1": "^2.2.3"
}
}