Files
clarity-codegen/package.json
2023-10-04 22:25:04 +08:00

38 lines
852 B
JSON

{
"name": "clarity-codegen",
"version": "0.2.6",
"main": "./lib/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"lib/",
"dist/"
],
"license": "MIT",
"bin": {
"clarity-codegen": "./lib/generate/cli.js"
},
"scripts": {
"prepare": "pnpm run build",
"build": "rm -rf lib && tsc -p tsconfig.json && tsc -p tsconfig.cjs.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.5.0",
"lodash": "^4.17.21",
"yargs": "^17.7.2",
"yqueue": "^1.0.1"
},
"peerDependencies": {
"@stacks/transactions": "*"
}
}