{
  "name": "@layoutit/polycss-core",
  "version": "0.2.11",
  "description": "Pure math engine for CSS polygon mesh rendering. Zero browser globals.",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "polycss",
    "polygon",
    "mesh",
    "3d",
    "css",
    "matrix3d",
    "dom",
    "rendering"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/LayoutitStudio/polycss.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/LayoutitStudio/polycss/issues"
  },
  "homepage": "https://github.com/LayoutitStudio/polycss#readme",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./three": {
      "types": "./dist/three.d.ts",
      "import": "./dist/three.js",
      "require": "./dist/three.cjs"
    }
  },
  "typesVersions": {
    "*": {
      "three": [
        "dist/three.d.ts"
      ]
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "tsup": "^8.0.1",
    "typescript": "^5.3.3",
    "vitest": "^3.1.1",
    "@vitest/coverage-v8": "^3.1.1"
  },
  "scripts": {
    "build": "tsup",
    "test": "vitest run --passWithNoTests",
    "test:coverage": "vitest run --coverage --passWithNoTests"
  }
}