| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 | {  "name": "@gilbarbara/deep-equal",  "version": "0.3.1",  "description": "Tiny deep equal comparator",  "author": "Gil Barbara <gilbarbara@gmail.com>",  "repository": {    "type": "git",    "url": "git://github.com/gilbarbara/deep-equal.git"  },  "bugs": {    "url": "https://github.com/gilbarbara/deep-equal/issues"  },  "homepage": "https://github.com/gilbarbara/deep-equal#readme",  "main": "dist/index.js",  "module": "dist/index.mjs",  "exports": {    ".": {      "import": "./dist/index.mjs",      "require": "./dist/index.js"    }  },  "files": [    "dist",    "src"  ],  "types": "dist/index.d.ts",  "sideEffects": false,  "license": "MIT",  "keywords": [    "equal",    "deep-equal",    "typescript"  ],  "devDependencies": {    "@gilbarbara/eslint-config": "^0.5.4",    "@gilbarbara/prettier-config": "^1.0.0",    "@gilbarbara/tsconfig": "^0.2.3",    "@size-limit/preset-small-lib": "^9.0.0",    "@types/node": "^20.8.4",    "@types/react": "^18.2.28",    "@types/react-dom": "^18.2.13",    "@types/react-test-renderer": "^18.0.3",    "@vitest/coverage-v8": "^0.34.6",    "del-cli": "^5.1.0",    "happy-dom": "^12.7.0",    "husky": "^8.0.3",    "is-ci-cli": "^2.2.0",    "jest-extended": "^4.0.2",    "react": "^18.2.0",    "react-test-renderer": "^18.2.0",    "repo-tools": "^0.2.2",    "size-limit": "^9.0.0",    "ts-node": "^10.9.1",    "tsup": "^7.2.0",    "typescript": "^5.2.2",    "vitest": "^0.34.6"  },  "scripts": {    "build": "npm run clean && tsup",    "watch": "tsup --watch",    "clean": "del dist/*",    "test": "is-ci \"test:coverage\" \"test:watch\"",    "test:coverage": "TZ=UTC vitest run --coverage",    "test:watch": "TZ=UTC vitest watch",    "lint": "eslint --fix src test",    "typecheck": "tsc",    "format": "prettier \"**/*.{css,graphql,js,json,jsx,less,md,mdx,scss,ts,tsx,yaml,yml}\" --write",    "validate": "npm run lint && npm run typecheck && npm run test:coverage && npm run build && npm run size",    "size": "size-limit",    "prepublishOnly": "npm run validate",    "prepare": "husky install"  },  "tsup": {    "cjsInterop": true,    "dts": true,    "entry": [      "src/index.ts"    ],    "format": [      "cjs",      "esm"    ],    "sourcemap": true,    "splitting": false  },  "eslintConfig": {    "extends": [      "@gilbarbara/eslint-config"    ]  },  "prettier": "@gilbarbara/prettier-config",  "size-limit": [    {      "name": "commonjs",      "path": "./dist/index.js",      "limit": "1 kB"    },    {      "name": "esm",      "path": "./dist/index.mjs",      "limit": "1 kB"    }  ]}
 |