{
  "name": "@vectojs/core",
  "version": "1.38.1",
  "publishConfig": {
    "access": "public"
  },
  "description": "A mathematical Canvas 2D scene-graph framework with layout, events, accessibility projection, and optional GPU backends.",
  "keywords": [
    "canvas",
    "fourier",
    "spline",
    "rendering",
    "typescript",
    "vectorization"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vectojs/vectojs.git"
  },
  "bugs": {
    "url": "https://github.com/vectojs/vectojs/issues"
  },
  "homepage": "https://github.com/vectojs/vectojs#readme",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./layout": {
      "types": "./dist/layout/index.d.ts",
      "import": "./dist/layout.mjs",
      "require": "./dist/layout.js"
    },
    "./renderer": {
      "types": "./dist/renderer/index.d.ts",
      "import": "./dist/renderer.mjs",
      "require": "./dist/renderer.js"
    },
    "./text": {
      "types": "./dist/text/index.d.ts",
      "import": "./dist/text.mjs",
      "require": "./dist/text.js"
    },
    "./wasm": {
      "types": "./dist/wasm/asset.d.ts",
      "import": "./dist/wasm/asset.mjs",
      "require": "./dist/wasm/asset.js"
    },
    "./vectojs_core.wasm": "./dist/wasm/vectojs_core.wasm"
  },
  "files": [
    "dist",
    "THIRD_PARTY_NOTICES.md"
  ],
  "scripts": {
    "build": "(cd ../math && bun run build) && (cd ../text && bun run build) && (cd ../layout && bun run build) && (cd ../animation && bun run build) && tsup && tsc -p tsconfig.build.json",
    "test": "vitest run",
    "test:e2e": "bun e2e/hidpi.e2e.ts && bun e2e/text-projection.e2e.ts && bun e2e/svg-fallback.e2e.ts && bun e2e/msdf-atlas-decode.e2e.ts && bun e2e/layout-worker-fallback.e2e.ts"
  },
  "dependencies": {
    "@vectojs/animation": "^0.1.2",
    "@vectojs/layout": "^0.9.3",
    "@vectojs/math": "^0.1.1",
    "@vectojs/text": "^0.4.1"
  },
  "devDependencies": {
    "@guidepup/virtual-screen-reader": "0.32.1",
    "@vitest/coverage-v8": "^4.1.10",
    "esbuild": "^0.28.1",
    "jsdom": "^30.0.1",
    "puppeteer-core": "^25.7.0",
    "tsup": "^8.3.5",
    "vitest": "^4.1.10"
  }
}
