-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@observ33r/object-equals",
"version": "1.1.6",
"description": "A fast, flexible and robust utility for deep equality comparison with type-specific logic and engine-aware design.",
"type": "module",
"main": "dist/object-equals.esm.js",
"types": "dist/object-equals.d.ts",
"sideEffects": false,
"exports": {
"node": {
"import": "./dist/object-equals.node.esm.js",
"types": "./dist/object-equals.d.ts"
},
"default": {
"import": "./dist/object-equals.esm.js",
"types": "./dist/object-equals.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"deep",
"equal",
"equals",
"equality",
"comparison",
"object",
"compare",
"fast",
"high-performance",
"engine-aware",
"deep-equal",
"typescript",
"react",
"circular",
"crossrealm",
"symbols",
"custom-equality",
"structured-equality"
],
"author": "David Čuček <observ33r@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/observ33r/object-equals.git"
},
"bugs": {
"url": "https://github.com/observ33r/object-equals/issues"
},
"scripts": {
"build": "rollup -c",
"test": "vitest run",
"benchmark": "node --expose-gc benchmarks/basic.mjs",
"benchmark:react": "node --expose-gc benchmarks/react.mjs",
"benchmark:advanced": "node --expose-gc benchmarks/advanced.mjs"
},
"devDependencies": {
"@mitata/counters": "^0.0.8",
"@observ33r/object-generator": "^1.0.1",
"@rollup/plugin-terser": "^0.4.4",
"are-deeply-equal": "^1.1.1",
"dequal": "^2.0.3",
"fast-equals": "^5.1.3",
"lodash": "^4.17.21",
"mitata": "^1.0.33",
"react": "^19.1.0",
"react-fast-compare": "^3.2.2",
"rollup": "^4.41.1",
"rollup-plugin-dts": "^6.2.1",
"vitest": "^3.2.2"
}
}