-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 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
61
62
{
"name": "react-use-debug-hooks",
"version": "1.0.3",
"description": "A type-safe React hook for debugging purposes that wraps around the useEffect hook, which returns the dependencies that changed on each iteration of the effect within the console.",
"repository": "DarkAng3L/react-use-debug-hooks",
"bugs": {
"url": "https://github.com/DarkAng3L/react-use-debug-hooks/issues"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest --root __tests__/",
"tsc": "tsc --p ./tsconfig.build.json",
"build:cleanup": "rimraf ./dist",
"build": "pnpm run build:cleanup && pnpm run tsc",
"release-tag:commit": "pnpm run build && pnpm version patch && git push origin main && git push origin --tags",
"release": "pnpm run build && npm publish"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"darkang3l:registry": "https://npm.pkg.github.com"
},
"keywords": [
"react",
"debug",
"info",
"hook",
"react-hook",
"rerender",
"rerender count",
"useEffectDebug",
"useEffect",
"what",
"dependencies",
"deps",
"prop",
"changed"
],
"author": "Mihai Chiritescu",
"license": "ISC",
"peerDependencies": {
"react": "^16.8 || ^17 || ^18"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
"@types/lodash": "^4.14.198",
"@types/react": "^18.2.21",
"jsdom": "^22.1.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"rimraf": "^5.0.1",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
}
}