UNPKG

@next-boilerplate/cli

Version:
79 lines (78 loc) 2.3 kB
{ "name": "@next-boilerplate/cli", "version": "3.7.0-rec-release.19", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.cts", "scripts": { "build": "pkgroll", "type-check": "tsc --noEmit", "debug": "tsx ./debug/index.ts", "lint": "eslint .", "lint:fix": "eslint --fix .", "prettier": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"", "prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"" }, "exports": { ".": { "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" }, "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" } }, "./apply-config": { "require": { "types": "./dist/functions/apply-config/index.d.cts", "default": "./dist/functions/apply-config/index.cjs" }, "import": { "types": "./dist/functions/apply-config/index.d.mts", "default": "./dist/functions/apply-config/index.mjs" } } }, "bin": { "next-boilerplate": "dist/cli.js" }, "keywords": [ "cli", "sdk", "next-boilerplate", "tools", "boilerplate", "monorepo", "nextjs" ], "homepage": "https://github.com/rharkor/next-boilerplate", "author": "HUORT Louis (https://louis.huort.com)", "repository": { "type": "git", "url": "git+https://github.com/rharkor/next-boilerplate.git" }, "license": "MIT", "description": "CLI for Next Boilerplate", "devDependencies": { "@next-boilerplate/eslint": "*", "@next-boilerplate/prettier": "*", "@next-boilerplate/tsconfig": "*", "@next-boilerplate/scripts": "*", "pkgroll": "^2.4.2", "tsx": "^4.16.5" }, "dependencies": { "@inquirer/prompts": "^5.3.7", "@rharkor/logger": "^1.2.3", "commander": "^12.1.0", "typescript": "^5.5.4", "zx": "^8.1.4" }, "type": "module", "private": false, "publishConfig": { "access": "public" } }