-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.33 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.33 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
{
"name": "paytaca-cli",
"version": "0.3.0",
"description": "Command-line interface for the Paytaca Bitcoin Cash wallet",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"paytaca": "./bin/paytaca.js"
},
"files": [
"bin/",
"dist/",
"skills/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node bin/paytaca.js",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"bitcoin-cash",
"bch",
"wallet",
"cli",
"paytaca",
"cashtokens",
"cryptocurrency"
],
"repository": {
"type": "git",
"url": "https://github.com/paytaca/paytaca-cli.git"
},
"author": "Paytaca",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@bitauth/libauth": "2.0.0-alpha.8",
"@napi-rs/keyring": "^1.2.0",
"bip39": "^3.1.0",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"js-sha256": "^0.9.0",
"qrcode-terminal": "^0.12.0",
"watchtower-cash-js": "^0.2.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/qrcode-terminal": "^0.12.2",
"@vitest/ui": "^4.1.2",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=20.0.0"
}
}