{
  "name": "@holotope/core",
  "version": "0.0.22",
  "description": "N-dimensional geometry, transforms, polytopes, and projection for TypeScript.",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nikilp/holotope.js.git",
    "directory": "packages/core"
  },
  "homepage": "https://nikilp.github.io/holotope.js/",
  "bugs": "https://github.com/nikilp/holotope.js/issues",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./math": {
      "types": "./dist/math/index.d.ts",
      "import": "./dist/math/index.js"
    },
    "./geometry": {
      "types": "./dist/geometry/index.d.ts",
      "import": "./dist/geometry/index.js"
    },
    "./polytope": {
      "types": "./dist/polytope/index.d.ts",
      "import": "./dist/polytope/index.js"
    },
    "./coxeter": {
      "types": "./dist/coxeter/index.d.ts",
      "import": "./dist/coxeter/index.js"
    },
    "./projection": {
      "types": "./dist/projection/index.d.ts",
      "import": "./dist/projection/index.js"
    },
    "./lattice": {
      "types": "./dist/lattice/index.d.ts",
      "import": "./dist/lattice/index.js"
    },
    "./field": {
      "types": "./dist/field/index.d.ts",
      "import": "./dist/field/index.js"
    },
    "./coupling": {
      "types": "./dist/coupling/index.d.ts",
      "import": "./dist/coupling/index.js"
    },
    "./spectral": {
      "types": "./dist/spectral/index.d.ts",
      "import": "./dist/spectral/index.js"
    },
    "./representation": {
      "types": "./dist/representation/index.d.ts",
      "import": "./dist/representation/index.js"
    },
    "./scene": {
      "types": "./dist/scene/index.d.ts",
      "import": "./dist/scene/index.js"
    },
    "./animation": {
      "types": "./dist/animation/index.d.ts",
      "import": "./dist/animation/index.js"
    }
  },
  "keywords": [
    "4d",
    "nd",
    "geometry",
    "polytope",
    "projection",
    "tesseract",
    "hypercube"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit"
  }
}