forked from ravenrebels/ravencoin-key
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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": "@telestai-project/telestai-key",
"version": "2.8.3",
"description": "Generate Telestai 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 TelestaiKey -o ./dist/TelestaiKey.js",
"build": "npx parcel build && npm run browserify",
"test": "jest ./test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Telestai-Project/telestai-key.git"
},
"keywords": [
"Telestai",
"BIP44",
"BIP39"
],
"author": "Telestai Project / Zachary Price / Takehiko",
"license": "MIT",
"bugs": {
"url": "https://github.com/Telestai-Project/telestai-key/issues"
},
"homepage": "https://github.com/Telestai-Project/telestai-key#readme",
"dependencies": {
"@hyperbitjs/chains": "^1.2.0",
"@noble/secp256k1": "^2.2.3",
"@scure/bip32": "^1.6.2",
"bip39": "^3.0.4",
"bs58check": "^4.0.0",
"coinkey": "^3.0.0",
"ecpair": "^3.0.0-rc.0",
"elliptic": "^6.6.1",
"tiny-secp256k1": "^2.2.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"@types/bs58check": "^2.1.2",
"@types/node": "^18.14.0",
"babel-jest": "^29.7.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"jest": "^29.4.0",
"parcel": "^2.10.3",
"typescript": "^4.9.4"
}
}