@toolsycc/json-merge
Version:
A utility to deeply and safely merge JSON objects, with full TypeScript support.
40 lines (39 loc) • 849 B
JSON
{
"name": "@toolsycc/json-merge",
"version": "0.1.0",
"description": "A utility to deeply and safely merge JSON objects, with full TypeScript support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest",
"dev": "vitest watch"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"README.md"
],
"keywords": [
"toolsy",
"json",
"merge",
"deep merge",
"merge objects",
"immutable",
"typescript"
],
"author": "Sebastien Carriot <sebastien@digiteld.com>",
"license": "MIT",
"devDependencies": {
"vitest": "^3.1.1",
"typescript": "^5.0.0",
"@types/node": "^18.0.0"
}
}