UNPKG

scrypto-dev

Version:

CLI tool for Scrypto development on Radix DLT - deploy packages, generate types, manage accounts, and more

63 lines (62 loc) 1.74 kB
{ "name": "scrypto-dev", "version": "1.1.2", "description": "CLI tool for Scrypto development on Radix DLT - deploy packages, generate types, manage accounts, and more", "main": "dist/index.js", "bin": { "scrypto-dev": "dist/index.js" }, "scripts": { "build": "tsc", "build:binaries": "npm run build:schema-gen && npm run build:wallet-cli", "build:binaries:local": "chmod +x scripts/build-local-binaries.sh && ./scripts/build-local-binaries.sh", "build:schema-gen": "cd schema-gen && cargo build --release", "build:wallet-cli": "cd wallet-compatible-derivation-main/crates/wallet_compatible_derivation_cli && cargo build --release", "dev": "ts-node src/index.ts", "start": "node dist/index.js" }, "keywords": [ "scrypto", "radix", "cli", "blockchain", "radix-dlt", "defi", "smart-contracts", "package-deployment", "web3", "dapp" ], "author": "Your Name <your.email@example.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/yourusername/scrypto-dev-cli.git" }, "homepage": "https://github.com/yourusername/scrypto-dev-cli#readme", "bugs": { "url": "https://github.com/yourusername/scrypto-dev-cli/issues" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/**/*", "dist/binaries/**/*", "README.md", "DEPLOY_USAGE.md", "MANIFEST_USAGE.md", "LICENSE" ], "dependencies": { "@radixdlt/babylon-gateway-api-sdk": "^1.4.0", "@radixdlt/radix-engine-toolkit": "^1.0.5", "@rippy/gateway-ez-mode": "^9.6.9", "commander": "^11.0.0" }, "devDependencies": { "@types/node": "^20.0.0", "ts-node": "^10.9.0", "typescript": "^5.0.0" } }