{
  "name": "altiumts",
  "version": "0.0.74",
  "description": "TypeScript-first parser and serializer for Altium document formats",
  "type": "module",
  "bin": {
    "altiumts": "./dist/cli.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./node": {
      "types": "./dist/node.d.ts",
      "import": "./dist/node.js"
    }
  },
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/tscircuit/altiumts"
  },
  "license": "MIT",
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "benchmark": "bun run scripts/benchmark-references.ts",
    "build": "tsup-node lib/index.ts lib/node.ts lib/cli.ts --format esm --dts --sourcemap --clean",
    "check:size": "node scripts/check-package-size.mjs",
    "download-references": "bun run scripts/download-references.ts",
    "format": "biome format --write .",
    "format:check": "biome format .",
    "inventory-references": "bun run scripts/inventory-references.ts",
    "inventory-schema": "bun run scripts/audit-record-schema.ts",
    "lint": "biome check .",
    "prepack": "bun run build",
    "prepare": "bun run scripts/prepare-git-dependency.ts",
    "site:build": "vite build --config site/vite.config.ts",
    "site:dev": "vite --config site/vite.config.ts",
    "site:preview": "vite preview --config site/vite.config.ts",
    "site:typecheck": "bunx tsc -p site/tsconfig.json --noEmit",
    "test": "bun test",
    "test:update-svg": "BUN_UPDATE_SNAPSHOTS=1 bun test tests/svg",
    "typecheck": "bunx tsc --noEmit",
    "verify:browser": "bun run scripts/verify-browser-bundle.ts",
    "verify:package": "bun run build && node scripts/verify-built-package.mjs && bun run check:size"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.6",
    "@types/bun": "^1.3.14",
    "bun-match-svg": "^0.0.15",
    "sharp": "^0.35.3",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vite": "^8.2.0"
  },
  "overrides": {
    "esbuild": "^0.28.1",
    "sharp": "^0.35.3"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "dependencies": {
    "cfb": "^1.2.2",
    "fflate": "^0.8.3"
  }
}
