mirror of
https://github.com/alexgo-io/clarity-codegen.git
synced 2026-01-12 22:22:01 +08:00
38 lines
852 B
JSON
38 lines
852 B
JSON
{
|
|
"name": "clarity-codegen",
|
|
"version": "0.3.0",
|
|
"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": "*"
|
|
}
|
|
}
|