{
  "name": "@duper-js/wasm",
  "version": "0.4.3",
  "description": "WebAssembly bindings for Duper, the format that's super!",
  "keywords": [
    "Duper",
    "serialization",
    "encoding",
    "format",
    "wasm"
  ],
  "homepage": "https://duper.dev.br",
  "bugs": {
    "url": "https://github.com/EpicEric/duper/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/EpicEric/duper.git"
  },
  "license": "MIT",
  "author": "Eric Rodrigues Pires <eric@eric.dev.br>",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "scripts": {
    "bindgen": "uniffi-bindgen-react-native build web",
    "bindgen:release": "uniffi-bindgen-react-native build web --release",
    "optimize": "wasm-opt -Os ./src/generated/wasm-bindgen/index_bg.wasm -o ./src/generated/wasm-bindgen/index_bg.wasm",
    "clean": "rm -rf dist",
    "bundle": "node esbuild.mjs && tsc && cp -r ./src/generated/wasm-bindgen ./dist/wasm-bindgen",
    "build": "npm run clean && npm run bindgen && npm run optimize && npm run bundle",
    "build:ci": "npm run clean && npm run bindgen && npm run bundle",
    "build:release": "npm run clean && npm run bindgen:release && npm run optimize && npm run bundle",
    "test": "vitest run"
  },
  "devDependencies": {
    "esbuild": "^0.27.0",
    "typescript": "^5.9.3",
    "uniffi-bindgen-react-native": "^0.29.3-1",
    "vite": "^7.1.12",
    "vite-plugin-top-level-await": "^1.6.0",
    "vite-plugin-wasm": "^3.5.0",
    "vitest": "^4.0.6"
  }
}
