miridev-cli
Version:
Official CLI tool for deploying static sites to miri.dev - Deploy your websites in seconds
97 lines (96 loc) β’ 2.88 kB
JSON
{
"name": "miridev-cli",
"version": "1.0.6",
"description": "Official CLI tool for deploying static sites to miri.dev - Deploy your websites in seconds",
"main": "src/index.js",
"bin": {
"miridev": "./bin/miridev.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"prepublishOnly": "npm test && npm run lint && chmod +x bin/miridev.js",
"build": "echo 'No build step required'",
"dev": "node bin/miridev.js",
"prerelease": "npm run test && npm run lint && npm pack --dry-run",
"release": "npm run prerelease && npm version patch && npm publish && npm run postrelease",
"release:minor": "npm run prerelease && npm version minor && npm publish && npm run postrelease",
"release:major": "npm run prerelease && npm version major && npm publish && npm run postrelease",
"release:beta": "npm run prerelease && npm version prerelease --preid=beta && npm publish --tag=beta",
"postrelease": "echo 'π λ°°ν¬ μλ£! npm install -g miridev-cli λ‘ μ€μΉν μ μμ΅λλ€.'",
"deploy": "npm run release",
"deploy:minor": "npm run release:minor",
"deploy:major": "npm run release:major",
"deploy:beta": "npm run release:beta",
"check": "npm run test && npm run lint && echo 'β
λͺ¨λ μ²΄ν¬ ν΅κ³Ό!'",
"verify": "npm pack --dry-run"
},
"keywords": [
"static-site",
"deployment",
"hosting",
"cli",
"miri.dev",
"jamstack",
"static-hosting",
"website-deployment",
"frontend-deployment",
"web-hosting"
],
"author": {
"name": "Miri.dev Team",
"email": "support@miri.dev",
"url": "https://www.miri.dev"
},
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"chalk": "^4.1.2",
"commander": "^9.4.1",
"dotenv": "^16.0.3",
"form-data": "^4.0.0",
"fs-extra": "^11.1.0",
"glob": "^8.0.3",
"inquirer": "^8.2.5",
"mime-types": "^2.1.35",
"node-fetch": "^2.6.7",
"open": "^10.1.2",
"ora": "^5.4.1",
"path": "^0.12.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hongsw/www.miri.dev.git",
"directory": "cli"
},
"homepage": "https://www.miri.dev/docs/cli",
"bugs": {
"url": "https://github.com/hongsw/www.miri.dev/issues",
"email": "support@miri.dev"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
}
}