Skip to content

Commit

Permalink
fix: exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mesqueeb committed Jun 5, 2024
1 parent dbff310 commit 8e127fd
Showing 1 changed file with 29 additions and 32 deletions.
61 changes: 29 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,21 @@
{
"name": "find-and-replace-anything",
"version": "4.0.0",
"description": "Replace one val with another or all occurrences in an object recursively. A simple & small integration.",
"name": "case-anything",
"version": "3.0.0",
"description": "camelCase, kebab-case, PascalCase... a simple integration with nano package size. (SMALL footprint!)",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
".": "./dist/index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "vitest run",
"lint": "tsc --noEmit && eslint ./src",
"test": "vitest run",
"build": "del-cli dist && tsc",
"release": "npm run lint && npm run build && np"
},
"dependencies": {
"is-what": "^4.1.8"
},
"devDependencies": {
"del-cli": "^5.1.0",
"np": "^10.0.5",
Expand All @@ -39,26 +27,35 @@
"dist"
],
"keywords": [
"find-and-replace",
"find-replace",
"find-and-replace-if",
"javascript",
"recursively",
"has-prop",
"find-prop",
"replace-prop-value",
"replace-value",
"search-prop",
"search-object-prop",
"replace-if"
"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 (https://cycraft.co)",
"funding": "https://github.com/sponsors/mesqueeb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mesqueeb/find-and-replace-anything.git"
"url": "https://github.com/mesqueeb/case-anything.git"
},
"homepage": "https://github.com/mesqueeb/find-and-replace-anything#readme",
"bugs": "https://github.com/mesqueeb/find-and-replace-anything/issues"
"homepage": "https://github.com/mesqueeb/case-anything#readme",
"bugs": "https://github.com/mesqueeb/case-anything/issues"
}

0 comments on commit 8e127fd

Please sign in to comment.