{
  "name": "@awsless/weak-cache",
  "version": "0.0.1",
  "license": "MIT",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "https://github.com/heat-js/monorepo.git"
  },
  "bugs": {
    "url": "https://github.com/heat-js/monorepo/issues"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "cache",
    "weak",
    "garbage",
    "collector",
    "ref",
    "weakref"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "devDependencies": {
    "expose-gc": "^1.0.0"
  },
  "scripts": {
    "test": "pnpm exec code test",
    "build": "pnpm exec tsup src/index.ts --format cjs,esm --dts --clean",
    "prepublish": "if pnpm test; then pnpm build; else exit; fi"
  }
}