{
  "name": "{{package project-name}}",
  "version": "0.0.0",
  "description": "> TODO: add description",
  "author": "> TODO: add author",
  "homepage": "",
  "license": "MIT",
  "main": "lib/index.js",
  "module": "esm/index.js",
  "files": [
    "src",
    "esm",
    "lib"
  ],
  "scripts": {
    "dev:start": "tsc -w",
    "build:cjs": "rimraf ./lib && tsc --module commonjs --outDir lib",
    "build:esm": "rimraf ./esm && tsc --module ESNext --outDir esm",
    "build": "npm-run-all --parallel build:*",
    "lint": "eslint --ext js,jsx,ts,tsx src",
    "test": "jest"
  },
  "devDependencies": {
    "@attachments/eslint-plugin": "^0.1.0",
    "@types/jest": "^26.0.24",
    "@types/node": "^16.4.6",
    "eslint": "^7.31.0",
    "jest": "^27.0.6",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.4.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.4",
    "ts-node": "^10.1.0",
    "typescript": "^4.3.5"
  }
}
