{
  "name": "netcdfjs",
  "version": "4.0.0",
  "description": "Read and explore NetCDF files",
  "type": "module",
  "exports": {
    ".": "./lib/index.js"
  },
  "files": [
    "lib",
    "src"
  ],
  "keywords": [
    "netcdf",
    "nc",
    "data",
    "format"
  ],
  "author": "Miguel Asencio <maasencioh@gmail.com> (https://github.com/maasencioh)",
  "repository": "cheminfo/netcdfjs",
  "bugs": {
    "url": "https://github.com/cheminfo/netcdfjs/issues"
  },
  "homepage": "https://github.com/cheminfo/netcdfjs",
  "license": "MIT",
  "scripts": {
    "check-types": "tsc --noEmit",
    "clean": "rimraf 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"
  },
  "dependencies": {
    "iobuffer": "^6.0.1"
  },
  "devDependencies": {
    "@types/node": "^25.3.5",
    "@vitest/coverage-v8": "^4.0.18",
    "@zakodium/tsconfig": "^1.0.2",
    "eslint": "^9.39.0",
    "eslint-config-cheminfo-typescript": "^21.1.0",
    "prettier": "^3.8.1",
    "rimraf": "^6.1.3",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  }
}
