UNPKG

run-project-commands

Version:

A powerful CLI toolkit for developers to run, manage, and automate project commands across JavaScript/TypeScript projects with task automation and workflow management

100 lines (99 loc) 2.49 kB
{ "name": "run-project-commands", "version": "1.0.0", "description": "A powerful CLI toolkit for developers to run, manage, and automate project commands across JavaScript/TypeScript projects with task automation and workflow management", "keywords": [ "cli", "commands", "project", "toolkit", "development", "workflow", "automation", "typescript", "javascript", "developer-tools", "build-tools", "task-runner", "project-management", "cli-tools", "command-runner", "npm-scripts", "devops", "productivity", "node-cli", "command-line" ], "bin": { "rpc": "./dist/cli.js" }, "type": "module", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "typings": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./cli": { "types": "./dist/cli.d.ts", "import": "./dist/cli.js" } }, "files": [ "dist", "src", "bin" ], "sideEffects": false, "repository": { "type": "git", "url": "https://github.com/AdarshHatkar/run-project-commands.git" }, "homepage": "https://github.com/AdarshHatkar/run-project-commands#readme", "bugs": { "url": "https://github.com/AdarshHatkar/run-project-commands/issues" }, "author": { "name": "Adarsh Hatkar", "url": "https://github.com/AdarshHatkar" }, "license": "MIT", "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "clean": "npx rimraf dist", "prepublishOnly": "npm run clean && npm run build", "release:patch": "npm version patch", "postversion": "git push && git push --tags && npm publish", "link": "npm run build && npm link", "unlink": "npm unlink -g run-project-commands" }, "dependencies": { "@types/inquirer": "^9.0.8", "boxen": "^8.0.1", "chalk": "^5.3.0", "cli-spinners": "^3.2.0", "commander": "^11.0.0", "figlet": "^1.7.0", "gradient-string": "^3.0.0", "inquirer": "^12.7.0", "ora": "^8.2.0" }, "devDependencies": { "@types/figlet": "^1.7.0", "@types/node": "^24.0.10", "rimraf": "^6.0.1", "tsup": "^8.5.0", "typescript": "^5.4.0" } }