{
  "name": "ml-savitzky-golay-generalized",
  "version": "5.1.0",
  "description": "Savitzky–Golay filter in Javascript",
  "type": "module",
  "exports": {
    ".": "./lib/index.js"
  },
  "files": [
    "lib",
    "src"
  ],
  "scripts": {
    "build": "npm run tsc && cheminfo-build --entry lib/index.js --root SGG",
    "check-types": "tsc --noEmit",
    "clean": "rimraf coverage dist lib",
    "eslint": "eslint .",
    "eslint-fix": "eslint . --fix",
    "prepack": "npm run tsc",
    "prettier": "prettier --check .",
    "prettier-write": "prettier --write .",
    "test": "npm run test-only && npm run check-types && npm run eslint && npm run prettier",
    "test-only": "vitest run --coverage",
    "tsc": "npm run clean && npm run tsc-build",
    "tsc-build": "tsc --project tsconfig.build.json"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/mljs/savitzky-golay-generalized"
  },
  "keywords": [
    "signal",
    "filtering",
    "transformation",
    "savitzky",
    "Golay",
    "derivative"
  ],
  "author": {
    "name": "Miguel Asencio",
    "email": "maasencioh@gmail.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mljs/savitzky-golay-generalized/issues"
  },
  "homepage": "https://github.com/mljs/savitzky-golay-generalized",
  "dependencies": {
    "cheminfo-types": "^1.16.0",
    "is-any-array": "^3.0.0"
  },
  "devDependencies": {
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^5.0.0",
    "@zakodium/tsconfig": "^1.0.5",
    "cheminfo-build": "^1.4.0",
    "eslint": "^9.39.2",
    "eslint-config-cheminfo-typescript": "^22.1.0",
    "prettier": "^3.9.6",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.3",
    "vitest": "^5.0.0"
  }
}
