{
  "name": "@mjfcolas/n-linear-interpolation",
  "version": "1.0.2",
  "description": "1, 2 and 3 dimensions implementation of linear interpolation algorithm for a given set of coordinates and values.",
  "keywords": [
    "interpolation",
    "linear interpolation",
    "bilinear interpolation",
    "trilinear interpolation"
  ],
  "main": "lib/cjs/index.js",
  "types": "lib/cjs/types/index.d.ts",
  "files": [
    "/lib/**/*"
  ],
  "scripts": {
    "test": "jest",
    "clean": "rm -rf ./lib",
    "build": "npm run clean && npm run build:esm && npm run build:cjs",
    "build:esm": "tsc -p ./tsconfig.esm.json",
    "build:cjs": "tsc -p ./tsconfig.cjs.json",
    "prepack": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/mjfcolas/n-linear-interpolation"
  },
  "author": "",
  "license": "LGPL-3.0-or-later",
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.5",
    "typescript": "^5.5.3"
  },
  "exports": {
    ".": {
      "types": {
        "import": "./lib/esm/types/index.d.ts",
        "require": "./lib/cjs/types/index.d.ts"
      },
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js"
    }
  }
}
