{
  "name": "import-without-cache",
  "type": "module",
  "version": "0.2.5",
  "description": "Import ES modules without cache.",
  "author": "Kevin Deng <sxzz@sxzz.moe>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/sxzz",
  "homepage": "https://github.com/sxzz/import-without-cache#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sxzz/import-without-cache.git"
  },
  "bugs": {
    "url": "https://github.com/sxzz/import-without-cache/issues"
  },
  "exports": {
    ".": "./dist/index.mjs",
    "./package.json": "./package.json"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "devDependencies": {
    "@sxzz/eslint-config": "^7.4.3",
    "@sxzz/prettier-config": "^2.2.6",
    "@types/bun": "^1.3.4",
    "@types/node": "^25.0.2",
    "@typescript/native-preview": "7.0.0-dev.20251216.1",
    "bumpp": "^10.3.2",
    "eslint": "^9.39.2",
    "prettier": "^3.7.4",
    "tsdown": "^0.18.0",
    "typescript": "^5.9.3"
  },
  "prettier": "@sxzz/prettier-config",
  "scripts": {
    "lint": "eslint --cache .",
    "lint:fix": "pnpm run lint --fix",
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "node --test tests/index.test.js",
    "test:bun": "bun test tests/bun.test.ts",
    "typecheck": "tsgo --noEmit",
    "format": "prettier --cache --write .",
    "release": "bumpp"
  }
}