create-scripts
Version: 
A multi-tool script management utility that supports package.json scripts management for Git, SVN, and NPM.
27 lines • 658 B
JSON
{
  "name": "create-scripts",
  "version": "1.0.3",
  "description": "A multi-tool script management utility that supports package.json scripts management for Git, SVN, and NPM.",
  "main": "dist/index.js",
  "bin": {
    "create-gitee": "./dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "prepare": "npm run build",
    "git": "read -p 'Enter commit message: ' msg && git add . && git commit -m \"$msg\" && git push origin main"
  },
  "keywords": [
    "git",
    "gitee",
    "github",
    "init",
    "repository"
  ],
  "author": "",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^18.19.124",
    "typescript": "^4.7.4"
  }
}