{
  "name": "template-package",
  "description": "<YOUR DESCRIPTION HERE>",
  "type": "module",
  "license": "MIT",
  "private": true,
  "publishConfig": {
    "access": "public"
  },
  "version": "0.0.0",
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/<USER>/<REPOSITORY>"
  },
  "exports": {
    ".": {
      "types": "./build/typescript/index.d.ts",
      "quilt:source": "./source/index.ts",
      "quilt:esnext": "./build/esnext/index.esnext",
      "import": "./build/esm/index.mjs"
    }
  },
  "types": "./build/typescript/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "build": "rollup --config ./rollup.config.js"
  },
  "dependencies": {
    "@types/react": "^19.0.0"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    }
  },
  "devDependencies": {
    "react": "npm:@quilted/react@*"
  },
  "browserslist": [
    "defaults and fully supports es6-module",
    "maintained node versions"
  ]
}
