UNPKG

@stacks/keychain

Version:

A package for managing Stacks keychains

89 lines (88 loc) 2.81 kB
{ "name": "@stacks/keychain", "version": "4.3.8", "description": "A package for managing Stacks keychains", "license": "MIT", "author": "Hiro Systems PBC (https://hiro.so)", "contributors": [ "Hank Stoever", "Ken Liao" ], "homepage": "https://hiro.so/stacks-js", "scripts": { "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:polyfill", "build:cjs": "tsc -b tsconfig.build.json", "build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm", "build:polyfill": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c ../../configs/rollup.config.js && rimraf dist/polyfill/dist", "build:umd": "NODE_OPTIONS=--max-old-space-size=8192 webpack --config webpack.config.js", "clean": "rimraf dist && tsc -b tsconfig.build.json --clean", "pack": "npm pack", "prepublishOnly": "npm run test && NODE_ENV=production npm run build", "start": "tsc -b tsconfig.build.json --watch --verbose", "test": "jest", "test:watch": "jest --watch --coverage=false", "typecheck": "tsc --noEmit", "typecheck:watch": "npm run typecheck -- --watch" }, "dependencies": { "@blockstack/rpc-client": "^0.3.0-alpha.11", "@scure/bip39": "^1.1.0", "@stacks/auth": "^4.3.8", "@stacks/common": "^4.3.5", "@stacks/encryption": "^4.3.8", "@stacks/network": "^4.3.5", "@stacks/profile": "^4.3.8", "@stacks/storage": "^4.3.8", "@stacks/transactions": "^4.3.8", "@types/node": "^18.0.4", "@types/triplesec": "^3.0.0", "bip32": "^2.0.6", "bitcoinjs-lib": "^5.2.0", "c32check": "^1.1.3", "jsontokens": "^3.1.1", "randombytes": "^2.1.0", "triplesec": "^4.0.3", "zone-file": "^2.0.0-beta.3" }, "devDependencies": { "@types/jest": "^26.0.22", "crypto-browserify": "^3.12.0", "jest": "^26.6.3", "jest-fetch-mock": "^3.0.3", "jest-module-name-mapper": "^0.1.5", "process": "^0.11.10", "rimraf": "^3.0.2", "stream-browserify": "^3.0.0", "ts-jest": "^26.5.5", "ts-loader": "^9.1.1", "typescript": "^4.2.4", "util": "^0.12.4", "webpack": "^5.36.1", "webpack-bundle-analyzer": "^4.5.0", "webpack-cli": "^4.6.0" }, "sideEffects": false, "typings": "dist/index.d.ts", "main": "dist/index.js", "module": "dist/esm/index.js", "browser": "dist/polyfill/index.js", "umd:main": "dist/umd/index.js", "unpkg": "dist/umd/index.js", "files": [ "dist", "src" ], "keywords": [ "Blockstack", "Keychain", "Stacks" ], "repository": { "type": "git", "url": "git+https://github.com/hirosystems/stacks.js.git" }, "bugs": { "url": "https://github.com/blockstack/blockstack.js/issues" }, "gitHead": "fcb69afe8869d995c44d3b82cfd14877040c0b2d" }