-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@react-hookz/deep-equal",
"version": "3.0.0",
"description": "Fast deep equal comparator",
"keywords": [
"deep",
"deep-equal",
"fast",
"react",
"es6",
"compare",
"compare-objects",
"compare-maps",
"compare-arrays",
"compare-sets"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/react-hookz/deep-equal.git"
},
"bugs": {
"url": "https://github.com/react-hookz/deep-equal/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"./dist"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@react-hookz/eslint-config": "^4.1.7",
"@react-hookz/eslint-formatter-gha": "^3.0.4",
"@vitest/browser": "^3.0.9",
"@vitest/coverage-v8": "^3.0.9",
"commitlint": "^19.8.0",
"dequal": "^2.0.3",
"eslint": "^9.22.0",
"fast-deep-equal": "^3.1.3",
"husky": "^9.0.10",
"lint-staged": "^15.5.0",
"pinst": "^3.0.0",
"react-fast-compare": "^3.2.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"scripts": {
"postinstall": "husky",
"build": "yarn build:clean && tsc --version && tsc -p ./tsconfig.build.json",
"build:clean": "rimraf -g ./dist",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"benchmark": "vitest bench --run"
},
"packageManager": "yarn@4.5.3"
}