-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "@rcharmeyer/react-utils",
"version": "0.0.12",
"description": "Reed's react utilities",
"license": "MIT",
"author": "Reed Harmeyer <rcharmeyer@gmail.com>",
"homepage": "https://github.com/rcharmeyer/react-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rcharmeyer/react-utils.git"
},
"bugs": {
"url": "https://github.com/rcharmeyer/react-utils/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "vite build",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"dependencies": {
"lodash-es": "^4.17.21",
"shallowequal": "^1.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.0",
"@types/shallowequal": "^1.1.1",
"@vitejs/plugin-react": "^2.0.0",
"jsdom": "^21.1.1",
"lodash-es": "^4.17.21",
"react": "^18.0.0",
"typescript": "5.0.3",
"vite": "^3.0.0",
"vite-plugin-dts": "^2.1.0",
"vitest": "^0.29.8"
},
"peerDependencies": {
"react": "^18.0.0"
}
}