{
  "name": "cffjs",
  "version": "0.1.0",
  "description": "Types and utilities for working with CITATION.cff files in Typescript",
  "author": "Rowan Cockett <rowan@continuousfoundation.org>",
  "homepage": "https://github.com/continuous-foundation/cffjs",
  "license": "MIT",
  "sideEffects": false,
  "type": "module",
  "exports": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "citation-cff",
    "open-science",
    "publishing"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/continuous-foundation/cffjs.git"
  },
  "scripts": {
    "prepublishOnly": "bun test && bun run build",
    "clean": "rm -rf dist",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "typecheck": "tsc --noEmit",
    "lint": "eslint \"src/**/!(*.spec).ts\" -c ./.eslintrc.cjs",
    "lint:format": "prettier --check \"src/**/*.{ts,tsx,md}\"",
    "build:esm": "tsc",
    "build": "bun run clean && bun run build:esm",
    "changeset": "changeset",
    "version": "changeset version",
    "release": "changeset publish && git push --follow-tags"
  },
  "bugs": {
    "url": "https://github.com/continuous-foundation/cffjs/issues"
  },
  "dependencies": {
    "ajv": "^8.20.0",
    "ajv-formats": "^3.0.1",
    "js-yaml": "^4.1.1",
    "myst-frontmatter": "^1.9.5"
  },
  "devDependencies": {
    "@changesets/cli": "^2.31.0",
    "@types/bun": "latest",
    "@types/js-yaml": "4.0.9",
    "@types/node": "^25.6.0",
    "eslint-config-curvenote": "^0.0.4",
    "prettier": "latest",
    "typescript": "^6.0.3"
  }
}
