-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 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
{
"name": "@ravenrebels/ravencoin-key",
"version": "2.8.0",
"description": "Generate Ravencoin addresses from mnemonic code. BIP32, BIP39, BIP44",
"source": "index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"browserify": "browserify ./dist/main.js --standalone RavencoinKey -o ./dist/RavencoinKey.js",
"build": "npx parcel build && npm run browserify",
"test": "jest ./test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ravenrebels/ravencoin-key.git"
},
"keywords": [
"Ravencoin",
"BIP44",
"BIP39"
],
"author": "Raven Rebels / Dick Henrik Larsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ravenrebels/ravencoin-key/issues"
},
"homepage": "https://github.com/ravenrebels/ravencoin-key#readme",
"dependencies": {
"@hyperbitjs/chains": "^1.2.0",
"bip39": "^3.0.4",
"coinkey": "^3.0.0",
"hdkey": "^2.0.1"
},
"devDependencies": {
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"@types/hdkey": "^2.0.3",
"@types/node": "^18.14.0",
"browserify": "^17.0.0",
"jest": "^29.4.0",
"parcel": "^2.10.3",
"typescript": "^4.9.4"
}
}