@iota/ledgerjs-hw-app-iota
Version:
Ledger Hardware Wallet IOTA Application API
76 lines • 2.34 kB
JSON
{
"name": "@iota/ledgerjs-hw-app-iota",
"version": "0.3.0",
"description": "Ledger Hardware Wallet IOTA Application API",
"keywords": [
"Ledger",
"LedgerWallet",
"IOTA",
"NanoS",
"Blue",
"Hardware Wallet"
],
"author": "IOTA Foundation <info@iota.org>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github.com:iotaledger/iota.git"
},
"bugs": {
"url": "https://github.com/iotaledger/iota/issues"
},
"homepage": "https://github.com/iotaledger/iota/sdk/ledgerjs-hw-app-iota/#readme",
"files": [
"CHANGELOG.md",
"dist",
"src"
],
"type": "commonjs",
"main": "./dist/cjs/Iota.js",
"module": "./dist/esm/Iota.js",
"types": "./dist/cjs/Iota.d.ts",
"exports": {
".": {
"import": "./dist/esm/Iota.js",
"require": "./dist/cjs/Iota.js"
}
},
"size-limit": [
{
"path": "dist/Iota.js",
"limit": "10 kB"
}
],
"dependencies": {
"@ledgerhq/hw-transport": "^6.31.0",
"fast-sha256": "^1.3.0"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.29.0",
"@ledgerhq/hw-transport-node-speculos-http": "^6.29.2",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/node": "^20.14.10",
"axios": "^1.8.2",
"size-limit": "^11.1.4",
"typescript": "^5.5.3",
"vitest": "^2.1.9",
"@iota/build-scripts": "0.0.0"
},
"scripts": {
"analyze": "size-limit",
"clean": "rm -rf tsconfig.tsbuildinfo ./dist",
"build": "build-package",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix:watch": "onchange '**' -i -f add -f change -j 5 -- prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore {{file}}",
"size": "size-limit",
"test": "pnpm test:typecheck && pnpm test:unit",
"test:typecheck": "tsc -p ./tests",
"test:unit": "vitest run",
"test:watch": "vitest"
}
}