{
  "name": "simple-ml",
  "version": "1.0.4",
  "description": "A simple, robust JavaScript machine learning library with regression, classification, clustering, and preprocessing algorithms",
  "type": "module",
  "source": "index.js",
  "exports": {
    "require": "./dist/simple-ml.cjs",
    "import": "./dist/simple-ml.modern.js",
    "default": "./dist/simple-ml.modern.js"
  },
  "main": "./dist/simple-ml.cjs",
  "module": "./dist/simple-ml.module.js",
  "unpkg": "./dist/simple-ml.umd.js",
  "umd:main": "./dist/simple-ml.umd.js",
  "scripts": {
    "test": "node tests/test-runner.js",
    "build": "microbundle --format modern,esm,cjs,umd --name SimpleML",
    "dev": "microbundle watch"
  },
  "files": [
    "dist",
    "src",
    "index.js",
    "README.md"
  ],
  "keywords": [
    "machine-learning",
    "ml",
    "regression",
    "classification",
    "clustering",
    "preprocessing",
    "statistics",
    "linear-regression",
    "logistic-regression",
    "knn",
    "naive-bayes",
    "k-means",
    "decision-tree"
  ],
  "author": "",
  "license": "MIT",
  "engines": {
    "node": ">=14.0.0"
  },
  "devDependencies": {
    "microbundle": "^0.15.1"
  }
}
