{
  "name": "rolldown-plugin-wasm",
  "type": "module",
  "version": "0.3.2",
  "description": "Rolldown plugin for WASM.",
  "author": "Kevin Deng <sxzz@sxzz.moe>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/sxzz",
  "homepage": "https://github.com/sxzz/rolldown-plugin-wasm#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sxzz/rolldown-plugin-wasm.git"
  },
  "bugs": {
    "url": "https://github.com/sxzz/rolldown-plugin-wasm/issues"
  },
  "exports": {
    ".": "./dist/index.mjs",
    "./package.json": "./package.json",
    "./types": "./types.d.ts"
  },
  "types": "./dist/index.d.mts",
  "files": [
    "dist",
    "types.d.ts"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": "^22.18.0 || >=24.0.0"
  },
  "peerDependencies": {
    "rolldown": "^1.0.0"
  },
  "devDependencies": {
    "@sxzz/eslint-config": "^8.1.0",
    "@sxzz/prettier-config": "^2.3.1",
    "@sxzz/test-utils": "^0.5.18",
    "@types/node": "^25.9.3",
    "@typescript/native-preview": "7.0.0-dev.20260612.1",
    "bumpp": "^11.1.0",
    "eslint": "^10.4.1",
    "prettier": "^3.8.4",
    "rolldown": "1.1.1",
    "test-pkg": "./examples/pkg",
    "tsdown": "^0.22.2",
    "tsdown-preset-sxzz": "^0.6.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.8",
    "wasm-pack": "^0.15.0"
  },
  "prettier": "@sxzz/prettier-config",
  "scripts": {
    "lint": "eslint --cache .",
    "lint:fix": "pnpm run lint --fix",
    "build": "tsdown",
    "build:examples": "bash ./examples/build.sh",
    "dev": "tsdown --watch",
    "test": "NODE_OPTIONS=--experimental-vm-modules vitest --typecheck",
    "typecheck": "tsgo --noEmit",
    "format": "prettier --cache --write .",
    "release": "bumpp"
  }
}