Skip to main content
Module

x/microdiff/package.json

A fast, zero dependency object and array comparison library. Significantly faster than most other deep comparison libraries and has full TypeScript support.
Go to Latest
File
{ "name": "microdiff", "version": "1.3.0", "description": "Small, fast, zero dependency deep object and array comparison", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { "import": "./dist/index.js", "require": "./dist/index.cjs", "default": "./dist/index.js" }, "scripts": { "build": "tsc --module CommonJS && cd dist && mv \"index.js\" \"index.cjs\" && cd ../ && tsc --module es2020 && npx prettier -w dist/* --loglevel warn", "test": "npm run build && uvu tests", "bench": "npm run build && node bench.js", "prepublish": "npm run build" }, "keywords": [ "diff", "comparison" ], "author": "AsyncBanana", "license": "MIT", "files": [ "dist" ], "devDependencies": { "deep-diff": "^1.0.2", "deep-object-diff": "^1.1.0", "diff": "^5.0.0", "picocolors": "^1.0.0", "prettier": "^2.4.1", "typescript": "^4.4.4", "uvu": "^0.5.2" }, "type": "module", "repository": { "type": "git", "url": "https://github.com/AsyncBanana/microdiff" }, "homepage": "https://github.com/AsyncBanana/microdiff#readme", "bugs": "https://github.com/AsyncBanana/microdiff/issues"}