Files
stacks.js/packages/keychain/package.json
Reed Rosenbluth d00f05d35c v2.0.1
2021-08-09 11:02:18 -04:00

87 lines
2.4 KiB
JSON

{
"name": "@stacks/keychain",
"version": "2.0.1",
"description": "A package for managing Stacks keychains",
"keywords": [
"Stacks",
"Blockstack",
"Keychain"
],
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/esm/index.js",
"typings": "dist/index.d.ts",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"gitHead": "77b4d6d531b74996e4b7a0cbd1cf5b8358a690ce",
"author": "Hank Stoever",
"homepage": "https://blockstack.org",
"contributors": [
{
"name": "Hank Stoever"
},
{
"name": "Ken Liao"
}
],
"license": "GPL-3.0-or-later",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/blockstack.js.git"
},
"bugs": {
"url": "https://github.com/blockstack/blockstack.js/issues"
},
"scripts": {
"start": "tsc -b tsconfig.build.json --watch --verbose",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig.build.json",
"build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm",
"build:umd": "webpack --config webpack.config.js",
"clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
"prepublishOnly": "npm run test && npm run build && npm run build:umd",
"test": "jest",
"test:watch": "jest --watch --coverage=false",
"typecheck": "tsc --noEmit",
"typecheck:watch": "npm run typecheck -- --watch"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-module-name-mapper": "^0.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"ts-loader": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.36.1",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"@blockstack/rpc-client": "^0.3.0-alpha.11",
"@stacks/auth": "1.3.0-beta-3",
"@stacks/common": "^2.0.1",
"@stacks/encryption": "^2.0.1",
"@stacks/network": "^1.2.2",
"@stacks/profile": "^1.2.3",
"@stacks/storage": "^2.0.1",
"@stacks/transactions": "^2.0.1",
"@types/bn.js": "^4.11.6",
"@types/node": "^14.14.43",
"@types/triplesec": "^3.0.0",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.2.0",
"bn.js": "^4.12.0",
"c32check": "^1.1.2",
"jsontokens": "^3.0.0",
"randombytes": "^2.1.0",
"triplesec": "^4.0.3",
"zone-file": "^1.0.0"
}
}