Files
clarity-codegen/package.json
2022-07-27 12:47:48 +08:00

36 lines
775 B
JSON

{
"name": "clarity-codegen",
"version": "0.1.0",
"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.3.3",
"@types/lodash": "^4.14.182",
"@types/node": "^18.6.1",
"@types/yargs": "^17.0.10",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@stacks/stacks-blockchain-api-types": "^4.1.0",
"axios": "^0.27.2",
"lodash": "^4.17.21",
"yargs": "^17.5.1",
"yqueue": "^1.0.1"
},
"peerDependencies": {
"@stacks/transactions": "*"
}
}