Files
stacks.js/packages/cli/package.json
Reed Rosenbluth fe831cf28d v3.1.1
2021-12-20 10:57:01 -05:00

119 lines
2.8 KiB
JSON

{
"name": "@stacks/cli",
"version": "3.1.1",
"description": "Stacks command line tool",
"keywords": [
"stacks",
"command",
"blockchain",
"id",
"auth",
"authentication",
"bitcoin",
"blockchain auth",
"blockchain authentication",
"blockchainid",
"blockchain id",
"bitcoin auth",
"bitcoin authentication",
"bitcoin login",
"blockchain login",
"authorization",
"login",
"signin",
"sso",
"crypto",
"cryptography",
"token",
"blockstack",
"blockstack auth",
"profile",
"identity",
"ethereum"
],
"author": {
"name": "Jude Nelson",
"email": "jude@blockstack.com",
"url": "https://blockstack.com"
},
"homepage": "https://blockstack.org",
"contributors": [
{
"name": "Ken Liao",
"email": "yukanliao@gmail.com"
}
],
"license": "GPL-3.0-or-later",
"bin": {
"stacks": "./bin.js",
"stx": "./bin.js"
},
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/blockstack.js.git"
},
"scripts": {
"start": "tsc -b tsconfig.build.json --watch --verbose",
"build": "npm run clean && npm run build:cjs",
"build:cjs": "tsc -b tsconfig.build.json",
"clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
"test": "jest",
"test:watch": "jest --watch --coverage=false",
"prepublishOnly": "npm run test && npm run build"
},
"bugs": {
"url": "https://github.com/blockstack/blockstack.js/issues"
},
"devDependencies": {
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/express-winston": "^3.0.1",
"@types/inquirer": "^6.5.0",
"@types/jest": "^26.0.22",
"@types/node-fetch": "^2.5.0",
"@types/ripemd160": "^2.0.0",
"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",
"typescript": "^4.2.4"
},
"dependencies": {
"@stacks/auth": "^3.1.0",
"@stacks/blockchain-api-client": "^0.34.1",
"@stacks/common": "^3.0.0",
"@stacks/network": "^3.0.0",
"@stacks/stacking": "^3.1.0",
"@stacks/storage": "^3.1.0",
"@stacks/transactions": "^3.1.0",
"@stacks/wallet-sdk": "^3.1.1",
"ajv": "^4.11.5",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.2.0",
"blockstack": "^19.2.2",
"bn.js": "^4.12.0",
"c32check": "^1.1.3",
"cors": "^2.8.4",
"cross-fetch": "^3.1.4",
"express": "^4.17.1",
"express-winston": "^3.1.0",
"inquirer": "^7.1.0",
"jsontokens": "^3.0.0",
"node-fetch": "^2.6.0",
"ripemd160": "^2.0.1",
"winston": "^3.2.1",
"zone-file": "^2.0.0-beta.3"
},
"gitHead": "77b4d6d531b74996e4b7a0cbd1cf5b8358a690ce"
}