array-comparisoncomparisoncomparison-tooldeep-diffdiffjson-diffnodejsobject-comparisonobject-diffobjectdiffobjectdifferencereactstreamingstreaming-datatypescript
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.
112 lines
2.7 KiB
112 lines
2.7 KiB
{ |
|
"name": "@donedeal0/superdiff", |
|
"version": "3.1.2", |
|
"type": "module", |
|
"description": "SuperDiff compares two arrays or objects and returns a full diff of their differences", |
|
"main": "dist/index.js", |
|
"module": "dist/index.js", |
|
"types": "dist/index.d.ts", |
|
"declaration": true, |
|
"files": ["dist"], |
|
"exports": { |
|
".": "./dist/index.js", |
|
"./client": "./dist/client.js", |
|
"./server": "./dist/server.cjs" |
|
}, |
|
"author": "DoneDeal0", |
|
"license": "ISC", |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/DoneDeal0/superdiff" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/DoneDeal0/superdiff/issues" |
|
}, |
|
"funding": { |
|
"type": "github", |
|
"url": "https://github.com/sponsors/DoneDeal0" |
|
}, |
|
"readme": "./README.md", |
|
"release": { |
|
"branches": [ |
|
"master" |
|
], |
|
"verifyConditions": [ |
|
"@semantic-release/github", |
|
"@semantic-release/npm" |
|
], |
|
"prepare": [], |
|
"publish": [ |
|
"@semantic-release/npm", |
|
"@semantic-release/github" |
|
], |
|
"plugins": [ |
|
"@semantic-release/commit-analyzer", |
|
"@semantic-release/release-notes-generator", |
|
"@semantic-release/github", |
|
[ |
|
"@semantic-release/npm", |
|
{ |
|
"npmPublish": true |
|
} |
|
] |
|
] |
|
}, |
|
"keywords": [ |
|
"data diff", |
|
"comparison", |
|
"comparison-tool", |
|
"object-comparison", |
|
"array-comparison", |
|
"object-diff", |
|
"objectdifference", |
|
"object-difference", |
|
"object", |
|
"diff", |
|
"deep-diff", |
|
"json-diff", |
|
"files diff", |
|
"json", |
|
"file", |
|
"isobject", |
|
"comparison", |
|
"compare", |
|
"stream", |
|
"streaming", |
|
"isequal", |
|
"chunks" |
|
], |
|
"scripts": { |
|
"build": "tsup", |
|
"format": "npx prettier . --write", |
|
"lint:dead-code": "npx -p typescript@latest -p knip knip", |
|
"lint": "eslint --cache --max-warnings=0 --fix", |
|
"prepare": "husky", |
|
"transpile": "node scripts/transpile-node-worker.js", |
|
"test": "npm run transpile && jest", |
|
"tsc": "tsc --noEmit --incremental" |
|
}, |
|
"devDependencies": { |
|
"@eslint/js": "^9.14.0", |
|
"@semantic-release/exec": "^6.0.3", |
|
"@semantic-release/git": "^10.0.1", |
|
"@semantic-release/github": "^11.0.0", |
|
"@semantic-release/npm": "^12.0.1", |
|
"@swc/core": "^1.7.42", |
|
"@swc/jest": "^0.2.37", |
|
"@types/jest": "^29.5.14", |
|
"blob-polyfill": "^9.0.20240710", |
|
"eslint": "^9.14.0", |
|
"husky": "^9.1.6", |
|
"jest": "^29.7.0", |
|
"jest-environment-jsdom": "^29.7.0", |
|
"jsdom": "^25.0.1", |
|
"prettier": "^3.3.3", |
|
"swc-loader": "^0.2.6", |
|
"ts-node": "^10.9.2", |
|
"tsup": "^8.3.5", |
|
"typescript": "^5.6.3", |
|
"typescript-eslint": "^8.12.2", |
|
"web-streams-polyfill": "^4.0.0" |
|
} |
|
}
|
|
|