{
  "name": "create-npm-packages",
  "version": "1.0.5",
  "description": "Set up git repo/monorepo for npm package(s) by running one command",
  "type": "module",
  "main": "./dist/mjs/index.js",
  "types": "./dist/mjs/index.d.ts",
  "bin": {
    "create-npm-packages": "./dist/mjs/cnp.js",
    "cnp": "./dist/mjs/cnp.js"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/mjs/index.d.ts",
        "default": "./dist/mjs/index.js"
      }
    },
    "./*": {
      "import": {
        "types": "./dist/mjs/*.d.ts",
        "default": "./dist/mjs/*.js"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "bin",
    "assets"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hsuehic/create-npm-package.git"
  },
  "bugs": {
    "url": "https://github.com/hsuehic/create-npm-package/issues"
  },
  "homepage": "https://github.com/hsuehic/create-npm-package#readme",
  "license": "MIT",
  "author": {
    "name": "Richard",
    "email": "hsuehic@gmail.com",
    "url": "https://github.com/hsuehic"
  },
  "engines": {
    "node": ">=16.0"
  },
  "keywords": [
    "boilerplate",
    "template",
    "typescript",
    "vscode",
    "jest",
    "husky",
    "commitlint",
    "changesets",
    "codecov"
  ],
  "devDependencies": {
    "@types/decompress": "^4.2.4",
    "@types/prompts": "^2.4.4"
  },
  "dependencies": {
    "@inquirer/prompts": "^3.0.0",
    "@octokit/rest": "^20.0.1",
    "@octokit/types": "^11.1.0",
    "chalk": "^5.3.0",
    "commander": "^11.0.0",
    "decompress": "^4.2.1",
    "got": "^13.0.0",
    "octokit": "^3.0.0",
    "prompts": "^2.4.2",
    "ts-pattern": "^5.0.4",
    "zx": "^7.2.3",
    "cnp-utils": "^1.0.2"
  },
  "scripts": {
    "build": "npm run build:mjs",
    "build:mjs": "tsc --project tsconfig.mjs.json",
    "clean": "rm -rf ./lib/ && rm -rf ./dist/",
    "eslint": "eslint ./src/ --fix",
    "lintpackagejson": "npmPkgJsonLint .",
    "typecheck": "tsc --project tsconfig.mjs.json --noEmit",
    "prepublish": "npm run build",
    "prebuild": "npm run clean && npm run update_version",
    "update_version": "version=$(npm pkg get version -ws=false | tr -d \\\") && echo \"export const PACKAGE_VERSION = '${version}';\" > ./src/version.ts",
    "update_template_list": "ts-node-esm scripts/update_template_list.ts"
  }
}