-
Notifications
You must be signed in to change notification settings - Fork 573
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5531 from iron-fish/staging
STAGING -> MASTER
- Loading branch information
Showing
69 changed files
with
3,633 additions
and
1,141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "ironfish", | ||
"version": "2.7.0", | ||
"version": "2.8.0", | ||
"description": "CLI for running and interacting with an Iron Fish node", | ||
"author": "Iron Fish <[email protected]> (https://ironfish.network)", | ||
"main": "build/src/index.js", | ||
|
@@ -43,34 +43,35 @@ | |
"yarn": "^1.22.10" | ||
}, | ||
"scripts": { | ||
"build": "tsc -b", | ||
"lint": "tsc -b && eslint --ext .ts,.tsx,.js,.jsx src/", | ||
"build": "tsc -b tsconfig.build.json", | ||
"build:tests": "tsc -b", | ||
"lint": "yarn build && eslint --ext .ts,.tsx,.js,.jsx src/", | ||
"lint:deprecated": "yarn lint --rule \"deprecation/deprecation: warn\"", | ||
"lint:fix": "tsc -b && eslint --ext .ts,.tsx,.js,.jsx src/ --fix", | ||
"lint:fix": "yarn build && eslint --ext .ts,.tsx,.js,.jsx src/ --fix", | ||
"start:dev": "node start", | ||
"start": "yarn build && yarn start:js", | ||
"start:js": "cross-env OCLIF_TS_NODE=0 IRONFISH_DEBUG=1 node --expose-gc --inspect=:0 --inspect-publish-uid=http --enable-source-maps bin/run", | ||
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest", | ||
"test:coverage:html": "tsc -b tsconfig.test.json && cross-env NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns --coverage --coverage-reporters html", | ||
"test:watch": "yarn clean && tsc -b && tsc -b tsconfig.test.json && cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch --coverage false", | ||
"test:coverage:html": "yarn build:tests && cross-env NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns --coverage --coverage-reporters html", | ||
"test:watch": "yarn clean && yarn build && yarn build:tests && cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch --coverage false", | ||
"postpack": "rimraf oclif.manifest.json", | ||
"clean": "rimraf build", | ||
"prepack": "rimraf build && yarn build && oclif manifest && oclif readme", | ||
"oclif:version": "oclif readme && git add README.md" | ||
}, | ||
"dependencies": { | ||
"@ironfish/rust-nodejs": "2.7.0", | ||
"@ironfish/sdk": "2.7.0", | ||
"@ironfish/sdk": "2.8.0", | ||
"@ledgerhq/errors": "6.17.0", | ||
"@ledgerhq/hw-transport-node-hid": "6.29.1", | ||
"@oclif/core": "4.0.11", | ||
"@oclif/plugin-help": "6.2.5", | ||
"@oclif/plugin-not-found": "3.2.10", | ||
"@oclif/plugin-warn-if-update-available": "3.1.8", | ||
"@types/keccak": "3.0.4", | ||
"@types/tar": "6.1.1", | ||
"@zondax/ledger-ironfish": "0.1.2", | ||
"@zondax/ledger-ironfish-dkg": "npm:@zondax/[email protected]", | ||
"@zondax/ledger-js": "^1.0.1", | ||
"@zondax/ledger-ironfish": "1.0.0", | ||
"@zondax/ledger-js": "1.0.1", | ||
"axios": "1.7.2", | ||
"bech32": "2.0.0", | ||
"blessed": "0.1.81", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.