-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 KB
/
package.json
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
{
"name": "tiny-equal",
"version": "1.1.1",
"description": "Tiny & Fastest is-equal check with various ES6 objects.",
"bugs": "https://github.com/eunbae0/tiny-equal/issues",
"repository": {
"type": "git",
"url": "https://github.com/eunbae0/tiny-equal"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "rslib build",
"check": "biome check --write",
"dev": "rslib build --watch",
"format": "biome format --write",
"test": "vitest run",
"benchmark:simple": "node benchmark/simple/performance.cjs --export-gc && node benchmark/simple/performance.mjs --expose-gc",
"benchmark:complex": "node benchmark/complex/performance.cjs --export-gc && node benchmark/complex/performance.mjs --expose-gc"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@rslib/core": "^0.0.18",
"@types/node": "^22.8.1",
"benchmark": "^2.1.4",
"deep-eql": "^5.0.2",
"deep-equal": "^2.2.3",
"dequal": "^2.0.3",
"es-toolkit": "^1.27.0",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.21",
"mitata": "^1.0.10",
"typescript": "^5.6.3",
"underscore": "^1.13.7",
"vitest": "^2.1.4"
},
"keywords": [
"tiny-equal",
"tiny",
"is-equal",
"equal",
"deep-equal",
"deep-eql",
"object"
],
"license": "MIT",
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}