Files
clarity-codegen/package.json
2022-05-09 02:05:20 +00:00

36 lines
777 B
JSON

{
"name": "clarity-codegen",
"version": "0.0.14",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/"
],
"license": "MIT",
"bin": {
"clarity-codegen": "./lib/generate/cli.js"
},
"scripts": {
"prepare": "yarn build",
"build": "rm -rf lib && tsc -p tsconfig.json"
},
"devDependencies": {
"@stacks/transactions": "^4.0.0",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.31",
"@types/yargs": "^17.0.10",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"dependencies": {
"@stacks/stacks-blockchain-api-types": "^3.0.3",
"axios": "^0.27.2",
"lodash": "^4.17.21",
"yargs": "^17.4.1",
"yqueue": "^1.0.0"
},
"peerDependencies": {
"@stacks/transactions": "*"
}
}