{
  "name": "ml-savitzky-golay-generalized",
  "version": "5.0.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 src",
    "eslint-fix": "npm run eslint -- --fix",
    "prepack": "npm run tsc",
    "prettier": "prettier --check src",
    "prettier-write": "prettier --write src",
    "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.15.0",
    "is-any-array": "^3.0.0"
  },
  "devDependencies": {
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^4.1.4",
    "@zakodium/tsconfig": "^1.0.5",
    "cheminfo-build": "^1.3.2",
    "eslint": "^9.39.2",
    "eslint-config-cheminfo-typescript": "^21.2.0",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "typescript": "^5.9.3",
    "vitest": "^4.1.4"
  }
}
