| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- {
- "author": "tony_quetano@planttheidea.com",
- "browser": "dist/umd/index.js",
- "bugs": {
- "url": "https://github.com/planttheidea/fast-equals/issues"
- },
- "description": "A blazing fast equality comparison, either shallow or deep",
- "devDependencies": {
- "@rollup/plugin-commonjs": "^29.0.0",
- "@rollup/plugin-node-resolve": "^16.0.3",
- "@rollup/plugin-replace": "^6.0.3",
- "@rollup/plugin-terser": "^0.4.4",
- "@rollup/plugin-typescript": "^12.3.0",
- "@types/lodash": "^4.17.20",
- "@types/node": "^24.10.1",
- "@types/ramda": "^0.31.1",
- "@types/react": "^19.2.3",
- "@types/react-dom": "^19.2.3",
- "@typescript-eslint/eslint-plugin": "^8.46.4",
- "@typescript-eslint/parser": "^8.46.4",
- "@vitest/coverage-v8": "4.0.8",
- "decircularize": "^1.0.0",
- "deep-eql": "^5.0.2",
- "deep-equal": "^2.2.3",
- "dequal": "^2.0.3",
- "eslint": "^9.39.1",
- "eslint-friendly-formatter": "^4.0.1",
- "eslint-plugin-import": "^2.32.0",
- "fast-deep-equal": "^3.1.3",
- "fast-glob": "^3.3.3",
- "lodash": "^4.17.21",
- "nano-equal": "^2.0.2",
- "prettier": "^3.6.2",
- "react": "^19.2.0",
- "react-dom": "^19.2.0",
- "react-fast-compare": "^3.2.2",
- "release-it": "^19.0.6",
- "rollup": "^4.53.2",
- "shallow-equal-fuzzy": "^0.0.2",
- "tinybench": "^5.1.0",
- "typescript": "^5.9.3",
- "typescript-eslint": "^8.46.4",
- "underscore": "^1.13.7",
- "vite": "^7.2.2",
- "vitest": "^4.0.8"
- },
- "engines": {
- "node": ">=6.0.0"
- },
- "exports": {
- ".": {
- "import": {
- "types": "./dist/esm/types/index.d.mts",
- "default": "./dist/esm/index.mjs"
- },
- "require": {
- "types": "./dist/cjs/types/index.d.cts",
- "default": "./dist/cjs/index.cjs"
- },
- "default": {
- "types": "./dist/umd/types/index.d.ts",
- "default": "./dist/umd/index.js"
- }
- }
- },
- "files": [
- "dist",
- "src",
- "CHANGELOG.md",
- "index.d.ts",
- "LICENSE",
- "package.json",
- "README.md"
- ],
- "homepage": "https://github.com/planttheidea/fast-equals#readme",
- "keywords": [
- "fast",
- "equal",
- "equals",
- "deep-equal",
- "equivalent"
- ],
- "license": "MIT",
- "main": "dist/cjs/index.cjs",
- "module": "dist/esm/index.mjs",
- "name": "fast-equals",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/planttheidea/fast-equals.git"
- },
- "scripts": {
- "benchmark": "npm run build:esm && node benchmark/index.js",
- "build": "npm run build:esm && npm run build:cjs && npm run build:umd && npm run build:min && npm run build:types",
- "build:cjs": "rm -rf dist/cjs && NODE_ENV=production rollup -c config/rollup/config.cjs.js && tsc -p ./config/tsconfig/cjs.json && node scripts/create-cts-files.js",
- "build:esm": "rm -rf dist/esm && NODE_ENV=production rollup -c config/rollup/config.esm.js && tsc -p ./config/tsconfig/esm.json && node scripts/create-mts-files.js",
- "build:min": "rm -rf dist/min && NODE_ENV=production rollup -c config/rollup/config.min.js && tsc -p ./config/tsconfig/min.json",
- "build:types": "node scripts/fallback-types.js",
- "build:umd": "rm -rf dist/umd && NODE_ENV=production rollup -c config/rollup/config.umd.js && tsc -p ./config/tsconfig/umd.json",
- "dev": "vite --config config/vite.config.js",
- "format": "prettier **/*.ts --write",
- "lint": "eslint src/*.ts",
- "lint:fix": "npm run lint -- --fix",
- "start": "npm run dev",
- "release": "release-it",
- "release:beta": "release-it --config=.release-it.beta.json",
- "release:scripts": "npm run typecheck && npm run lint && npm run test:coverage && npm run build",
- "test": "vitest run",
- "test:coverage": "rm -rf coverage && vitest run --coverage",
- "test:watch": "vitest",
- "typecheck": "tsc --noEmit"
- },
- "sideEffects": false,
- "type": "module",
- "types": "./index.d.ts",
- "version": "5.3.3"
- }
|