{
  "name": "@layoutit/polycss",
  "version": "0.2.8",
  "description": "PolyCSS vanilla / custom-elements + imperative API. Renders OBJ / STL / glTF / GLB mesh polygons as DOM via CSS matrix3d.",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "polycss",
    "polygon",
    "mesh",
    "3d",
    "css",
    "matrix3d",
    "dom",
    "custom-elements",
    "vanilla",
    "rendering"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/LayoutitStudio/polycss.git",
    "directory": "packages/polycss"
  },
  "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"
    },
    "./elements": {
      "types": "./dist/elements.d.ts",
      "import": "./dist/elements.js",
      "require": "./dist/elements.cjs"
    },
    "./three": {
      "types": "./dist/three.d.ts",
      "import": "./dist/three.js",
      "require": "./dist/three.cjs"
    }
  },
  "typesVersions": {
    "*": {
      "three": [
        "dist/three.d.ts"
      ],
      "elements": [
        "dist/elements.d.ts"
      ]
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@layoutit/polycss-core": "^0.2.8"
  },
  "devDependencies": {
    "tsup": "^8.0.1",
    "typescript": "^5.3.3",
    "vitest": "^3.1.1",
    "vite": "^6.0.0",
    "@vitest/coverage-v8": "^3.1.1",
    "happy-dom": "^20.7.0"
  },
  "scripts": {
    "build": "tsup",
    "test": "vitest run --passWithNoTests",
    "test:coverage": "vitest run --coverage --passWithNoTests"
  }
}