{
  "name": "create-node-template",
  "description": "Create node.js/express boilerplate with one command",
  "author": "AndyOooh",
  "version": "0.1.18",
  "exports": "./src/index.js",
  "type": "module",
  "engines": {
    "node": ">=16.7.0"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AndyOooh/first-npx.git"
  },
  "bin": {
    "create-node-template": "dist/src/index.js"
  },
  "files": [
    "dist/",
    "README.md",
    "package.json"
  ],
  "keywords": [
    "node",
    "node.js",
    "typescript",
    "express",
    "boilerplate",
    "template",
    "generator",
    "project",
    "setup",
    "cli",
    "rest",
    "api",
    "mongodb",
    "mongoose",
    "es6",
    "jest",
    "docker",
    "passport",
    "joi",
    "eslint",
    "prettier"
  ],
  "scripts": {
    "build": "tsc && resolve-tspaths",
    "copy-templates": "cp -r templates dist/",
    "dev": "tsx watch src/index.ts",
    "lint": "npx eslint .",
    "lint:fix": "npx eslint . --fix",
    "publish:patch": "bun run build && bun run copy-templates && npm version patch && npm publish --registry=https://registry.npmjs.org/",
    "start": "tsx dist/index.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "devDependencies": {
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.11.27",
    "@types/prompts": "^2.4.9",
    "@types/validate-npm-package-name": "^4.0.2",
    "commander": "^12.0.0",
    "conf": "^12.0.0",
    "eslint": "^8.57.0",
    "picocolors": "^1.0.0",
    "prompts": "^2.4.2",
    "resolve-tspaths": "^0.8.18",
    "typescript": "^5.4.2",
    "typescript-eslint": "^7.3.1",
    "update-check": "^1.5.4",
    "validate-npm-package-name": "^5.0.0"
  },
  "dependencies": {
    "@inquirer/checkbox": "^2.2.0",
    "chalk": "^5.3.0",
    "inquirer": "^9.2.16"
  }
}
