{
  "name": "@neoanaloglabkk/lensfun-wasm",
  "version": "0.1.3",
  "description": "Lensfun compiled to WebAssembly with a high-level JS API for browser frontends.",
  "license": "LGPL-3.0-or-later",
  "repository": {
    "type": "git",
    "url": "https://github.com/lexluthor0304/LensfunWasm.git"
  },
  "type": "module",
  "main": "./dist/umd/index.iife.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "files": [
    "dist",
    "native",
    "scripts",
    "UPSTREAM.md",
    "NOTICE.md",
    "THIRD_PARTY_LICENSES.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "default": "./dist/umd/index.iife.js"
    },
    "./core": {
      "default": "./dist/assets/lensfun-core.js"
    },
    "./core-wasm": {
      "default": "./dist/assets/lensfun-core.wasm"
    },
    "./core-data": {
      "default": "./dist/assets/lensfun-core.data"
    }
  },
  "scripts": {
    "build:wasm": "bash scripts/build-wasm.sh",
    "build:js": "tsup",
    "build:types": "tsc --emitDeclarationOnly",
    "build": "npm run build:wasm && npm run build:js && npm run build:types",
    "test": "vitest run",
    "check": "npm run build:js && npm run build:types && npm run test",
    "pack:dry-run": "npm pack --dry-run",
    "release:verify-tag": "node scripts/verify-release-tag.mjs"
  },
  "devDependencies": {
    "@types/node": "^22.13.10",
    "tsup": "^8.3.0",
    "typescript": "^5.8.2",
    "vitest": "^2.1.9"
  }
}
