UNPKG

cli-stepper

Version:

A simple CLI stepper for command-line or terminal applications.

54 lines 1.35 kB
{ "name": "cli-stepper", "type": "module", "version": "0.0.3", "description": "A simple CLI stepper for command-line or terminal applications.", "author": "Lu-Jiejie <lu-jiejie@outlook.com>", "license": "MIT", "homepage": "https://github.com/Lu-Jiejie/cli-stepper#readme", "repository": { "type": "git", "url": "git+https://github.com/Lu-Jiejie/cli-stepper.git" }, "bugs": "https://github.com/Lu-Jiejie/cli-stepper/issues", "keywords": [], "sideEffects": false, "exports": { ".": "./dist/index.mjs", "./package.json": "./package.json" }, "files": [ "dist" ], "dependencies": { "picocolors": "^1.1.1" }, "devDependencies": { "@antfu/eslint-config": "^3.14.0", "@types/node": "^20.17.13", "bumpp": "^9.10.1", "eslint": "^9.18.0", "lint-staged": "^15.3.0", "publint": "^0.3.16", "simple-git-hooks": "^2.11.1", "tsdown": "0.20.0-beta.3", "tsx": "^4.21.0", "typescript": "^5.7.3", "vitest": "^2.1.8" }, "simple-git-hooks": { "pre-commit": "pnpm lint-staged" }, "lint-staged": { "*": "eslint --fix" }, "scripts": { "dev": "tsdown --watch", "build": "tsdown", "lint": "eslint .", "release": "bumpp && npm publish", "start": "tsx src/index.ts", "test": "tsx test/test.ts", "typecheck": "tsc --noEmit" } }