-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "watchtower-cash-js",
"version": "0.2.1",
"description": "Library for building Javascript applications that integrate with Watchtower.cash",
"type": "module",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paytaca/watchtower-cash-js.git"
},
"author": "Joemar Taganna <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paytaca/watchtower-cash-js/issues"
},
"homepage": "https://github.com/paytaca/watchtower-cash-js#readme",
"dependencies": {
"@bitauth/libauth": "^2.0.0-alpha.8",
"@psf/bch-js": "^6.3.4",
"axios": "^0.21.1",
"bip39": "^3.1.0",
"js-sha256": "^0.9.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"mainnet-js": "^1.1.23",
"ts-jest": "^29.1.0",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}