difcli
Version:
CLI tool for Diffuse Prime
63 lines (62 loc) • 1.36 kB
JSON
{
"name": "difcli",
"version": "0.0.13",
"description": "CLI tool for Diffuse Prime",
"main": "dist/index.js",
"bin": {
"difcli": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js || true",
"start": "ts-node src/index.ts",
"dev": "ts-node --watch src/index.ts",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"cli",
"crypto",
"viem",
"blockchain",
"ethereum",
"wallet",
"diffuse",
"prime"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Diffuse-fi/prime-cli.git"
},
"homepage": "https://github.com/Diffuse-fi/prime-cli#readme",
"bugs": {
"url": "https://github.com/Diffuse-fi/prime-cli/issues"
},
"dependencies": {
"commander": "^12.0.0",
"viem": "^2.7.3",
"fs-extra": "^11.2.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/fs-extra": "^11.0.4",
"@types/crypto-js": "^4.1.1",
"typescript": "^5.3.0",
"ts-node": "^10.9.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}