package.json•2.08 kB
{
"name": "zetachain",
"version": "0.0.0-set-on-publish",
"description": "CLI tool for creating universal smart contracts on ZetaChain",
"main": "index.js",
"bin": {
"zetachain": "./dist/index.js"
},
"scripts": {
"build": "yarn tsc",
"lint:fix": "npm run lint:js:fix",
"lint:js:fix": "eslint --ext .js,.ts . --fix",
"lint:js": "eslint --ext .js,.ts .",
"lint": "npm run lint:js",
"zetachain": "npx tsx src/index.ts",
"zetachain:js": "yarn build && node dist/index.js",
"docs": "cat README.md > docs/index.md && npx tsx src/index.ts docs --no-analytics >> docs/index.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeta-chain/cli.git"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/zeta-chain/cli/issues"
},
"homepage": "https://github.com/zeta-chain/cli#readme",
"dependencies": {
"@zetachain/localnet": "12.0.3",
"@zetachain/toolkit": "16.1.2",
"axios": "^1.7.7",
"commander": "^13.1.0",
"cors": "^2.8.5",
"fs-extra": "^11.3.0",
"inquirer": "^12.3.2",
"marked": "^15.0.6",
"marked-terminal": "^7.2.1",
"ora": "^5.4.1",
"posthog-node": "^5.8.1",
"simple-git": "^3.27.0",
"uuid": "^11.1.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/clear": "^0.1.4",
"@types/fs-extra": "^11.0.4",
"@types/marked-terminal": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
}
}