{
  "name": "casing-kit",
  "version": "1.2.1",
  "description": "A lightweight, zero-dependency utility library for case transformations in JavaScript and TypeScript",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "type": "module",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs --dts --minify --clean",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "npm run build",
    "prepare": "npm run build"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "default": "./dist/index.js"
    }
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "case",
    "camel",
    "snake",
    "kebab",
    "pascal",
    "upper",
    "lower",
    "title",
    "string",
    "transform",
    "change",
    "convert",
    "format"
  ],
  "author": "Ajinkya Palaskar <palaskarajinkya22@gmail.com> (https://github.com/Ajinkyap22)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Ajinkyap22/casing-kit.git"
  },
  "bugs": {
    "url": "https://github.com/Ajinkyap22/casing-kit/issues"
  },
  "homepage": "https://github.com/Ajinkyap22/casing-kit#readme",
  "devDependencies": {
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^11.0.1",
    "semantic-release": "^24.2.3",
    "tsup": "^8.4.0",
    "typescript": "^5.7.3",
    "vitest": "^3.0.5"
  }
}
