UNPKG

cht-sh

Version:

A node based command line tool for cht.sh

50 lines (49 loc) 1.26 kB
{ "name": "cht-sh", "version": "1.2.1", "type": "module", "description": "A node based command line tool for cht.sh", "repository": "Seenko/cht-sh", "main": "./dist/index.js", "files": [ "dist/**/*" ], "bin": { "cht-sh": "./dist/index.js", "chtsh": "./dist/index.js", "cht": "./dist/index.js" }, "scripts": { "dev": "npm run build -- -w", "lint": "eslint --ext .js,.ts --ignore-path .gitignore .", "lint:fix": "npm run lint -- --fix", "genversion": "genversion --es6 --semi lib/version.ts", "build": "npm run genversion && npm run lint && tsc -p .", "clean": "rimraf dist", "prepublish": "npm run clean && npm run build" }, "keywords": [ "cli", "cheat.sh", "cht.sh", "cheatsheet" ], "author": "Seenko", "license": "MIT", "devDependencies": { "@types/node": "^17.0.31", "@typescript-eslint/eslint-plugin": "^5.22.0", "@typescript-eslint/parser": "^5.22.0", "eslint": "^8.0.1", "eslint-plugin-import": "^2.25.2", "eslint-plugin-n": "^15.0.0", "eslint-plugin-promise": "^6.0.0", "genversion": "^3.1.1", "rimraf": "^3.0.2", "typescript": "^4.6.4" }, "dependencies": { "commander": "^9.2.0", "node-fetch": "^3.2.4" } }