{
  "name": "@bubblyworld/highs-ts",
  "version": "1.2.0",
  "description": "A wasm build of the HiGHS (highs.dev) MILP solver with a convenient typescript interface. Runs with zero dependencies in both node and web environments.",
  "type": "module",
  "main": "./dist/index.node.cjs",
  "module": "./dist/index.node.js",
  "types": "./dist/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "node": {
        "import": {
          "types": "./dist/index.node.d.ts",
          "default": "./dist/index.node.js"
        },
        "require": {
          "types": "./dist/index.node.d.cts",
          "default": "./dist/index.node.cjs"
        }
      },
      "browser": {
        "types": "./dist/index.browser.d.ts",
        "default": "./dist/index.browser.js"
      },
      "default": {
        "types": "./dist/index.browser.d.ts",
        "default": "./dist/index.browser.js"
      }
    }
  },
  "files": [
    "dist/",
    "build/highs.js",
    "build/highs.wasm"
  ],
  "scripts": {
    "build": "npm run build:wasm && npm run build:ts",
    "build:wasm": "cd build && ./build.sh",
    "build:ts": "tsc && rollup -c && cp dist/index.node.d.ts dist/index.node.d.cts",
    "serve": "node --import tsx web/server.ts",
    "test": "npm run test:node && npm run test:browser",
    "test:node": "vitest run",
    "test:browser": "playwright test --config test/playwright.config.ts",
    "test:watch": "vitest",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "highs",
    "constraint",
    "optimise",
    "lp",
    "mip",
    "milp"
  ],
  "author": "Guy Paterson-Jones",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Bubblyworld/highs-ts.git"
  },
  "devDependencies": {
    "@playwright/test": "^1.40.0",
    "@rollup/plugin-typescript": "^11.0.0",
    "@types/node": "^20.0.0",
    "rollup": "^4.0.0",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0",
    "vitest": "^1.0.0"
  },
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
