{
  "name": "case-anything",
  "version": "2.1.10",
  "sideEffects": false,
  "type": "module",
  "description": "camelCase, kebab-case, PascalCase... a simple integration with nano package size. (SMALL footprint!)",
  "module": "./dist/index.es.js",
  "main": "./dist/index.cjs",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.es.js",
      "require": "./dist/index.cjs",
      "types": "./dist/types/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=12.13"
  },
  "scripts": {
    "lint": "tsc --noEmit && eslint ./src --ext .ts",
    "test": "vitest run",
    "build": "rollup -c ./scripts/build.js",
    "release": "npm run lint && del dist && npm run build && np"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^5.10.1",
    "@typescript-eslint/parser": "^5.10.1",
    "del-cli": "^4.0.1",
    "eslint": "^8.7.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-tree-shaking": "^1.10.0",
    "np": "^7.6.0",
    "prettier": "^2.5.1",
    "rollup": "^2.66.1",
    "rollup-plugin-typescript2": "^0.31.1",
    "typescript": "^4.5.5",
    "vitest": "^0.2.3"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mesqueeb/case-anything.git"
  },
  "keywords": [
    "change-case",
    "change-casing",
    "case-change",
    "casing-change",
    "camel-case",
    "pascal-case",
    "kebab-case",
    "snake-case",
    "ada-case",
    "constant-case",
    "train-case",
    "cobol-case",
    "path-case",
    "dot-case",
    "camel",
    "pascal",
    "kebab",
    "snake",
    "constant",
    "path",
    "format-string"
  ],
  "author": "Luca Ban - Mesqueeb",
  "funding": "https://github.com/sponsors/mesqueeb",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mesqueeb/case-anything/issues"
  },
  "homepage": "https://github.com/mesqueeb/case-anything#readme",
  "np": {
    "yarn": false,
    "branch": "production"
  },
  "eslintConfig": {
    "ignorePatterns": [
      "node_modules",
      "dist",
      "scripts",
      "test"
    ],
    "root": true,
    "parser": "@typescript-eslint/parser",
    "plugins": [
      "@typescript-eslint",
      "tree-shaking"
    ],
    "extends": [
      "eslint:recommended",
      "plugin:@typescript-eslint/eslint-recommended",
      "plugin:@typescript-eslint/recommended",
      "prettier"
    ],
    "rules": {
      "@typescript-eslint/no-empty-function": "off",
      "@typescript-eslint/no-explicit-any": "off",
      "@typescript-eslint/ban-ts-ignore": "off",
      "tree-shaking/no-side-effects-in-initialization": "error",
      "@typescript-eslint/ban-ts-comment": "off"
    }
  }
}
