Superdiff provides a complete and readable diff for both arrays and objects. Plus, it supports stream and file inputs for handling large datasets efficiently, is battle-tested, has zero dependencies, and is super fast.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
901 B

2 years ago
{
2 years ago
"name": "superdiff",
2 years ago
"version": "1.0.0",
2 years ago
"description": "SuperDiff checks the changes between two objects or arrays. It returns a complete diff with relevant information for each property or piece of data",
"main": "src/index.ts",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"declaration": true,
"files": [
"dist"
],
"author": "DoneDeal0",
"license": "ISC",
"repository": {
"type": "git",
2 years ago
"url": "git+https://github.com/DoneDeal0/superdiff"
},
"keywords": [
"deep-diff",
"data diff",
"object",
"diff",
"deep diff",
"comparison",
"compare"
],
"scripts": {
"build": "tsup --dts --format esm,cjs",
"test": "jest"
},
2 years ago
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"tsup": "^6.5.0",
2 years ago
"typescript": "^4.9.4"
}
}