UNPKG

create-sui-dapp

Version:

Command-line interface for Sui dApp Starter

53 lines 1.19 kB
{ "name": "create-sui-dapp", "version": "0.9.0", "description": "Command-line interface for Sui dApp Starter", "type": "module", "bin": { "create-sui-dapp": "./dist/index.js" }, "main": "dist/index.js", "devDependencies": { "@types/command-exists": "^1.2.3", "@types/inquirer": "^9.0.7", "@types/node": "^22.14.1", "prettier": "^3.5.3", "typescript": "^5.8.3" }, "dependencies": { "chalk": "^5.4.1", "command-exists": "^1.2.9", "commander": "^13.1.0", "inquirer": "^12.5.2", "ora": "^8.2.0" }, "keywords": [ "sui", "sui-dapp", "sui-dapp-starter", "sui-blockchain", "sui-boilerplate", "blockchain", "boilerplate", "starter", "starter-template", "create-sui-dapp", "sui-dapp-starter-cli", "cli", "suiware" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/suiware/create-sui-dapp.git" }, "bugs": { "url": "https://github.com/suiware/create-sui-dapp/issues" }, "scripts": { "dev": "tsc -w", "build": "tsc", "cli": "pnpm build && node ./dist/index.js", "format": "prettier --write \"src/**/*.ts\"" } }