{
  "name": "<%= npmName %>",
  "version": "0.0.0",
  "description": "<%= description %>",
  "main": "./lib/index.js",<% if (notOnlyNode) { %>
  "module": "./lib-esm/index.js",<% } %>
  "types": "./lib/index.d.ts",
  "keywords": [],
  "author": "<%= userName %>",
  "license": "MIT",
  "files": [
    "src",
    "lib"<% if (notOnlyNode) { %>,
    "lib-esm"<% } %>
  ],
  "scripts": {
    "check-types": "tsc --noEmit",
    "clean": "rimraf lib<% if (notOnlyNode) { %> lib-esm<% } %>",
    "eslint": "eslint src --cache",
    "eslint-fix": "npm run eslint -- --fix",
    "prepack": "npm run tsc",
    "prettier": "prettier --check src",
    "prettier-write": "prettier --write src",
    "test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
    "test-only": "jest --coverage",
    "tsc": "npm run clean && npm run tsc-cjs<% if (notOnlyNode) { %> && npm run tsc-esm<% } %>",
    "tsc-cjs": "tsc --project tsconfig.cjs.json"<% if (notOnlyNode) { %>,
    "tsc-esm": "tsc --project tsconfig.esm.json"<% } %>
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/<%= org %>/<%= name %>.git"
  },
  "bugs": {
    "url": "https://github.com/<%= org %>/<%= name %>/issues"
  },
  "homepage": "https://github.com/<%= org %>/<%= name %>#readme"
}
