Files
clarity-codegen/package.json
Kyle Fang 90de16ae3b 0.2.4
2023-08-31 11:56:50 +08:00

36 lines
775 B
JSON

{
"name": "clarity-codegen",
"version": "0.2.4",
"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": "^6.5.2",
"@types/lodash": "^4.14.194",
"@types/node": "^20.1.5",
"@types/yargs": "^17.0.24",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"dependencies": {
"@stacks/stacks-blockchain-api-types": "^7.1.10",
"axios": "^1.4.0",
"lodash": "^4.17.21",
"yargs": "^17.7.2",
"yqueue": "^1.0.1"
},
"peerDependencies": {
"@stacks/transactions": "*"
}
}