-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.58 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@gilbarbara/deep-equal",
"version": "0.3.1",
"description": "Tiny deep equal comparator",
"author": "Gil Barbara <[email protected]>",
"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"
}
]
}