@minima-global/minima-cli
Version:
A Cli for managing your minidapp while in development.
69 lines • 1.62 kB
JSON
{
"name": "@minima-global/minima-cli",
"version": "0.1.5",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"minima",
"typescript",
"mds",
"minidapps",
"minima-blockchain",
"web3"
],
"homepage": "https://github.com/minima-global/dev-tools",
"bugs": {
"url": "https://github.com/minima-global/dev-tools/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/minima-global/dev-tools"
},
"author": "Minima Global",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
}
},
"bin": {
"minima": "./dist/cli.js"
},
"dependencies": {
"archiver": "^7.0.1",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"scripts": {
"build": "tsup src/index.ts src/cli.ts --format esm --dts",
"dev": "tsup src/index.ts src/cli.ts --format esm --dts --watch",
"lint": "eslint .",
"clean": "rm -rf dist",
"format": "prettier --write \"./src/**/**.ts\" --write",
"check-format": "prettier \"./src/**/**.ts\" --check"
}
}