{
  "name": "yalps",
  "version": "0.6.4",
  "description": "Yet another linear programming solver. (A rewrite of javascript-lp-solver.) Aims to be decently fast.",
  "homepage": "https://github.com/IanManske/YALPS",
  "license": "MIT",
  "author": {
    "name": "Ian Manske"
  },
  "type": "module",
  "files": [
    "dist"
  ],
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "unpkg": "dist/index.min.js",
  "jsdelivr": "dist/index.min.js",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "default": "./dist/index.cjs"
    }
  },
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "git+https://github.com/IanManske/YALPS.git"
  },
  "bugs": {
    "url": "https://github.com/IanManske/YALPS/issues"
  },
  "keywords": [
    "Linear Programming",
    "Integer Programming",
    "Mixed Integer Linear Programming",
    "LP",
    "ILP",
    "MILP",
    "Solver",
    "Linear Optimization"
  ],
  "scripts": {
    "inspect": "node --import=tsimp --expose-gc --inspect-brk",
    "benchmark": "node --import=tsimp --expose-gc benchmarks/run.ts",
    "benchmark:inspect": "run-s \"inspect benchmarks/run.ts\"",
    "format": "prettier --check .",
    "lint": "eslint .",
    "type-check": "tsc",
    "check": "run-s format lint type-check",
    "format:fix": "prettier --write .",
    "lint:fix": "eslint --fix .",
    "fix": "run-s '*:fix'",
    "test": "vitest --run",
    "test:coverage": "vitest --run --coverage",
    "test:watch": "vitest --watch",
    "build": "tsup",
    "build:watch": "tsup --watch",
    "export-check": "attw --pack .",
    "prepack": "run-s build"
  },
  "dependencies": {
    "heap": "^0.2.7"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.2",
    "@eslint/js": "^9.39.2",
    "@types/heap": "^0.2.35",
    "@types/node": "^20.19.27",
    "@typescript-eslint/eslint-plugin": "^8.50.1",
    "@vitest/coverage-v8": "^4.0.16",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "globals": "^16.5.0",
    "glpk.js": "^5.0.0",
    "javascript-lp-solver": "^0.4.24",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.7.4",
    "tsimp": "^2.0.12",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.50.1",
    "vitest": "^4.0.16"
  }
}
