-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "use-debounced",
"version": "1.1.0",
"license": "MIT",
"description": "A React hook to debounce the provided value in render.",
"author": "Jan Amann <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/amannn/react-hooks/tree/master/packages/use-debounced"
},
"scripts": {
"start": "tsdx watch --tsconfig tsconfig.json --verbose --noClean",
"build": "tsdx build --tsconfig tsconfig.json",
"test": "tsdx test",
"lint": "eslint src test && tsc --noEmit",
"prepublish": "npm run build"
},
"main": "dist/index.js",
"module": "dist/use-debounced.esm.js",
"typings": "dist/index.d.ts",
"files": [
"README.md",
"dist"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"tslib": "^2.0.0"
},
"devDependencies": {
"@testing-library/react": "^13.1.1",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"eslint": "8.13.0",
"eslint-config-molindo": "^6.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsdx": "^0.14.1",
"typescript": "^4.8.2"
}
}