-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "@reactit/hooks",
"description": "Hook collection for React",
"author": "Borut Svara <[email protected]>",
"contributors": [
"Matteo Scorcia"
],
"license": "ISC",
"version": "0.1.15",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.0",
"@types/react": "16.14.32",
"jest-environment-jsdom": "^29.2.1",
"rollup": "^4.4.1",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^4.8.4"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svaraborut/reactit-hooks.git"
},
"keywords": [
"React",
"Hooks",
"Utils"
],
"bugs": {
"url": "https://github.com/svaraborut/reactit-hooks/issues"
},
"homepage": "https://github.com/svaraborut/reactit-hooks#readme"
}