-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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": "@pruthvi2103/use-debounce",
"version": "1.0.2",
"description": "A small simple hook for implementing debounce in react",
"repository": {
"type": "git",
"url": "git+https://github.com/pruthvi2103/use-debounce.git"
},
"main": "dist/use-debounce.es.js",
"module": "dist/use-debounce.es.js",
"types": "./src/use-debounce.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"jsdom": "^19.0.0",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-dts": "^1.0.4",
"vitest": "^0.7.4"
},
"keywords": [
"react",
"debounce",
"useDebounce",
"hooks"
],
"author": "Pruthvi Shetty <[email protected]> (https://github.com/pruthvi2103)",
"license": "ISC",
"bugs": {
"url": "https://github.com/pruthvi2103/use-debounce/issues"
},
"homepage": "https://github.com/pruthvi2103/use-debounce#readme",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/yourOrganizationOrAccount"
}
}