-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 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
{
"name": "use-deep-compare",
"version": "1.3.0",
"license": "MIT",
"description": "React hooks, except using deep comparison on the inputs, not reference equality",
"repository": {
"type": "git",
"url": "https://github.com/sandiiarov/use-deep-compare.git"
},
"scripts": {
"build": "pika build",
"tsc": "tsc --noEmit"
},
"babel": {
"presets": [
"@babel/preset-typescript",
"@babel/preset-react"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"dequal": "2.0.3"
},
"devDependencies": {
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@pika/pack": "0.5.0",
"@pika/plugin-build-node": "0.9.2",
"@pika/plugin-build-types": "0.9.2",
"@pika/plugin-build-web": "0.9.2",
"@pika/plugin-standard-pkg": "0.9.2",
"@types/react": "18.3.3",
"react": "18.3.1",
"typescript": "5.5.3"
}
}