{
  "name": "biologic-converter",
  "version": "1.0.0",
  "description": "Convert biologic file format",
  "license": "MIT",
  "author": "Luc Patiny",
  "type": "module",
  "files": [
    "lib",
    "src"
  ],
  "exports": {
    ".": "./lib/index.js"
  },
  "scripts": {
    "check-types": "tsc --noEmit",
    "clean": "rimraf coverage lib",
    "eslint": "eslint . --cache",
    "eslint-fix": "npm run 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": "git+https://github.com/cheminfo/biologic-converter.git"
  },
  "bugs": {
    "url": "https://github.com/cheminfo/biologic-converter/issues"
  },
  "homepage": "https://github.com/cheminfo/biologic-converter#readme",
  "devDependencies": {
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^4.1.4",
    "@zakodium/tsconfig": "^1.0.5",
    "eslint": "^9.39.4",
    "eslint-config-cheminfo-typescript": "^22.0.0",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.3",
    "vitest": "^4.1.4"
  },
  "dependencies": {
    "cheminfo-types": "^1.15.0",
    "ensure-string": "^2.0.0",
    "iobuffer": "^6.0.1"
  }
}
