@taquito/signer
Version:
Software signer implementations and signing utilities for Taquito.
96 lines (95 loc) • 2.76 kB
JSON
{
"name": "@taquito/signer",
"version": "24.3.0",
"description": "Software signer implementations and signing utilities for Taquito.",
"keywords": [
"taquito",
"tezos",
"typescript",
"blockchain",
"signer",
"crypto"
],
"main": "dist/taquito-signer.umd.js",
"module": "dist/taquito-signer.es6.js",
"typings": "dist/types/taquito-signer.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"author": "ECAD Labs Inc <info@ecadlabs.com>",
"contributors": [
"Jev Björsell (jevonearth)",
"Roxane Letourneau <roxane@ecadlabs.com>",
"Davis Sawali <davis.sawali@ecadlabs.com>",
"Simon Boissonneault-Robert <simon@ecadlabs.com>"
],
"homepage": "https://taquito.io/",
"repository": {
"type": "git",
"url": "git+https://github.com/ecadlabs/taquito.git"
},
"bugs": {
"url": "https://github.com/ecadlabs/taquito/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=22"
},
"scripts": {
"test": "vitest run --config ./vitest.config.ts",
"test:watch": "vitest --config ./vitest.config.ts",
"test:prod": "npm run lint && npm run test",
"lint": "eslint --ext .js,.ts .",
"precommit": "lint-staged",
"prebuild": "rimraf dist",
"version-stamp": "node ../taquito/version-stamping.js",
"build": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts --bundleConfigAsCjs",
"start": "rollup -c rollup.config.ts --bundleConfigAsCjs -w"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@noble/curves": "^1.9.7",
"@scure/bip39": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@stablelib/nacl": "^1.0.4",
"@taquito/core": "^24.3.0",
"@taquito/utils": "^24.3.0",
"@types/bn.js": "^5.1.5",
"bn.js": "^5.2.2",
"typedarray-to-buffer": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/bluebird": "^3.5.42",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"lint-staged": "^15.2.7",
"lodash.camelcase": "^4.3.0",
"prettier": "^3.3.3",
"prompt": "^1.3.0",
"replace-in-file": "^8.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.60.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-typescript2": "^0.37.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2",
"ts-toolbelt": "^9.6.0",
"typescript": "^5.9.3"
},
"gitHead": "551e35aeff7d6dcde1c72284238c0ed3c3aae77e"
}