-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "@ravenrebels/ravencoin-sign-transaction",
"description": "Signs a Ravencoin transaction",
"version": "0.2.12",
"source": "index.ts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/types.d.ts",
"scripts": {
"build": "parcel build --no-content-hash",
"postinstall": "node copyFile",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ravenrebels/ravencoin-sign-transaction.git"
},
"keywords": [
"ravencoin"
],
"author": "Raven Rebels - Dick Henrik Larsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ravenrebels/ravencoin-sign-transaction/issues"
},
"homepage": "https://github.com/ravenrebels/ravencoin-sign-transaction#readme",
"dependencies": {
"@hyperbitjs/chains": "^0.3.1",
"bitcoinjs-lib": "^5.2.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@types/node": "^18.14.0",
"jest": "^29.4.3",
"parcel": "^2.8.3",
"typescript": "^4.9.5"
}
}