{
  "name": "create-tampermonkey",
  "version": "1.0.5",
  "description": "An easy way to start a Tampermonkey UserScript",
  "type": "module",
  "bin": {
    "create-tampermonkey": "outfile.cjs"
  },
  "files": [
    "outfile.cjs",
    "template/vanilla"
  ],
  "engines": {
    "node": "^12.13.0 || ^14.0.0 || >= 16.0.0"
  },
  "scripts": {
    "prepare": "husky install",
    "format": "prettier --write .",
    "build": "esbuild --bundle index.js --format=cjs --platform=node --outfile=outfile.cjs",
    "dev": "esbuild --bundle index.js --format=cjs --platform=node --outfile=outfile.cjs --sourcemap --watch",
    "snapshot": "node snapshot.js",
    "pretest": "run-s build snapshot",
    "test": "node test.js",
    "prepublishOnly": "run-s build snapshot"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/curly210102/create-tampermonkey.git"
  },
  "keywords": [
    "userscript",
    "tampermonkey",
    "scaffold",
    "generator",
    "esnext",
    "typescript"
  ],
  "author": "Curly Brackets <water.curly@outlook.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/curly210102/create-tampermonkey/issues"
  },
  "homepage": "https://github.com/curly210102/create-tampermonkey#readme",
  "devDependencies": {
    "esbuild": "^0.12.29",
    "husky": "^7.0.2",
    "kolorist": "^1.5.0",
    "lint-staged": "^11.2.0",
    "minimist": "^1.2.5",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.4.1",
    "prompts": "^2.4.1"
  },
  "lint-staged": {
    "*.{js,ts,vue,json}": [
      "prettier --write"
    ]
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.com"
  }
}
