{
  "name": "${name}",
  "version": "0.0.0",
  "description": "${description}",
  "main": "./dist/index.js",
  "module": "./dist/${safeName}.esm.js",
  "files": [
    "dist"
  ],
  "size-limit": [
    {
      "path": "dist/${safeName}.cjs.production.min.js",
      "limit": "10 KB"
    },
    {
      "path": "dist/${safeName}.esm.js",
      "limit": "10 KB"
    }
  ],
  "scripts": {
    "build": "aqu build",
    "start": "aqu watch",
    "lint": "aqu lint",
    "lint:fix": "aqu lint --fix",
    "test": "aqu test --passWithNoTests",
    "test:watch": "aqu test --passWithNoTests --watch",
    "test:coverage": "aqu test --silent --ci --coverage --coverageReporters=\"text\" --coverageReporters=\"text-summary\"",
    "prepare": "aqu build",
    "release": "np",
    "size": "size-limit",
    "size:why": "size-limit --why"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "**/*.{js,jsx,ts,tsx,json}": "npm run lint:fix"
  },
  "author": "${author}",
  "license": "${license}",
  "homepage": "${repo}#readme",
  "repository": {
    "type": "git",
    "url": "git+${repo}.git"
  },
  "bugs": {
    "url": "${repo}/issues"
  },
  "devDependencies": {
    "aqu": "${versions.aqu}",
    "np": "^${versions.np}",
    "lint-staged": "^${versions.lintStaged}",
    "husky": "^${versions.husky}",
    "size-limit": "^${versions.sizeLimit}",
    "@size-limit/preset-small-lib": "^${versions.sizeLimitPresetSmallLib}"
  }
}
