UNPKG

@miregma/miregen

Version:

A CLI tool that unlocks seamless Miregma Template Generation.

104 lines 2.9 kB
{ "name": "@miregma/miregen", "private": false, "type": "module", "license": "MIT", "version": "2.0.8", "homepage": "https://miregen.miregma.com/", "description": "A CLI tool that unlocks seamless Miregma Template Generation.", "keywords": [ "Backend", "Frontend", "Mobile", "Tool", "CLI", "Template", "Bootstrap", "Miregma" ], "author": { "name": "Miregma", "email": "support@miregma.com", "url": "https://gitlab.com/miregma" }, "repository": { "type": "git", "url": "https://gitlab.com/miregma/miregen-cli.git" }, "bugs": { "url": "https://github.com/miregna/miregen-cli/issues" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "files": [ "dist" ], "bin": { "miregen": "./dist/index.js" }, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "dependencies": { "@clack/prompts": "0.7.0", "@winches/prompts": "0.0.7", "async-retry": "1.3.3", "chalk": "5.3.0", "commander": "11.0.0", "compare-versions": "6.1.1", "fast-glob": "3.3.2", "find-up": "7.0.0", "gradient-string": "2.0.2", "inquirer": "12.9.2", "ora": "8.0.1", "pathe": "1.1.2", "tar": "6.2.1", "typescript-eslint": "8.39.1" }, "devDependencies": { "@commitlint/cli": "17.7.1", "@commitlint/config-conventional": "17.7.0", "@types/gradient-string": "1.1.3", "@types/node": "24.3.0", "@typescript-eslint/eslint-plugin": "8.39.1", "@typescript-eslint/parser": "8.39.1", "bumpp": "9.4.0", "clean-package": "2.2.0", "commitlint-plugin-function-rules": "2.0.2", "conventional-changelog-cli": "4.1.0", "eslint": "9.33.0", "eslint-config-prettier": "10.1.8", "eslint-import-resolver-typescript": "4.4.4", "eslint-plugin-import": "2.32.0", "eslint-plugin-prettier": "5.5.4", "eslint-plugin-sort-destructure-keys": "2.0.0", "eslint-plugin-sort-keys-fix": "1.1.2", "eslint-plugin-unicorn": "60.0.0", "eslint-plugin-unused-imports": "4.1.4", "husky": "9.1.7", "lint-staged": "16.1.5", "prettier": "3.3.2", "tsup": "8.3.5", "tsx": "4.20.4", "typescript": "5.2.2" }, "engines": { "pnpm": ">=9.x" }, "scripts": { "dev": "tsup --watch", "link:cli": "pnpm link --global", "link:remove": "pnpm uninstall --global miregen", "build": "tsup", "sync:docs": "tsx src/scripts/sync/sync.ts", "clean:cache": "tsx src/scripts/cache/clean.ts", "lint": "eslint . --max-warnings=0", "lint:fix": "eslint . --max-warnings=0 --fix", "check:prettier": "prettier --check .", "check:types": "tsc --noEmit", "changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .", "release": "bumpp --execute='pnpm run changelog' --all" } }