{
  "name": "@ts-utilkit/parsing",
  "version": "0.2.1",
  "description": "Parsing utilities for JSON, CSV, XML, and other data formats",
  "homepage": "https://github.com/mykfor1/ts-utilkit/tree/main/packages/parsing#readme",
  "bugs": {
    "url": "https://github.com/mykfor1/ts-utilkit/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/MForofontov/ts-utilkit.git",
    "directory": "packages/parsing"
  },
  "license": "MIT",
  "author": "Mykyta Forofontov",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.js"
    }
  },
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "test": "jest --config jest.config.ts",
    "test:coverage": "jest --config jest.config.ts --coverage",
    "test:watch": "jest --config jest.config.ts --watch",
    "lint": "eslint src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "publish:dry": "npm publish --dry-run",
    "version:patch": "npm version patch",
    "version:minor": "npm version minor",
    "version:major": "npm version major"
  },
  "keywords": [
    "parsing",
    "json",
    "csv",
    "xml",
    "data"
  ],
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  }
}
