{
  "name": "tycho-solver",
  "version": "0.3.7",
  "description": "Evolutionary computation and optimization library",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "clean": "rimraf dist",
    "build": "tsc -b",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "prepublishOnly": "npm run build",
    "sudoku-demo": "npm run build && node demos/sudoku.js",
    "tsp-demo": "npm run build && node demos/tsp.js",
    "typecheck": "tsc -p tsconfig.build.json"
  },
  "keywords": [
    "evolutionary computation",
    "genetic algorithm",
    "ga",
    "optimization",
    "metaheuristics",
    "ec",
    "typescript"
  ],
  "author": "Ismel Martínez Díaz",
  "license": "MPL-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lemsy/TychoSolver.git"
  },
  "homepage": "https://github.com/lemsy/TychoSolver#readme",
  "bugs": {
    "url": "https://github.com/lemsy/TychoSolver/issues"
  },
  "devDependencies": {
    "@types/node": "^24.0.0",
    "@vitest/coverage-v8": "^3.2.4",
    "canvas": "^3.1.2",
    "rimraf": "^6.0.1",
    "typescript": "^7.0.2",
    "vitest": "^3.2.4"
  }
}