forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "@bitpay-labs/crypto-wallet-core",
"version": "11.10.4",
"description": "A multi-currency support library for address derivation, private key creation, and transaction creation",
"main": "./ts_build/src/index.js",
"types": "./ts_build/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore/tree/master/packages/crypto-wallet-core"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf ts_build && tsc --version",
"compile": "npm run clean && npm run build",
"lint": "eslint .",
"fix:errors": "eslint --fix --quiet .",
"fix:all": "eslint --fix .",
"fix": "npm run fix:errors",
"test": "npm run compile && nyc mocha 'ts_build/test/**/*.test.js'",
"pub": "npm run compile && npm publish"
},
"keywords": [
"multi-currency",
"addresses",
"and",
"transactions"
],
"author": "Micah Riggan",
"license": "MIT",
"dependencies": {
"@bitpay-labs/bitcore-lib": "^11.10.4",
"@bitpay-labs/bitcore-lib-cash": "^11.10.4",
"@bitpay-labs/bitcore-lib-doge": "^11.10.4",
"@bitpay-labs/bitcore-lib-ltc": "^11.10.4",
"@solana-program/compute-budget": "0.7.0",
"@solana-program/memo": "0.7.0",
"@solana-program/system": "0.7.0",
"@solana-program/token": "0.5.1",
"@solana/kit": "2.1.0",
"ed25519-hd-key": "^1.3.0",
"ethers": "6.13.5",
"info": "0.0.6-beta.0",
"ripple-binary-codec": "^1.10.0",
"web3": "4.16.0",
"xrpl": "2.13.0"
},
"devDependencies": {
"@types/chai": "5.0.1",
"@types/mocha": "10.0.10",
"@types/node": "22.13.1",
"chai": "5.1.2",
"typescript": "5.7.3"
},
"gitHead": "e091d99915d099863ad3e78dbe867aa7780191e4"
}