-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@abhushanaj/react-hooks",
"version": "0.6.0",
"description": "A collection of modern and server safe custom React hooks to supercharge your React application development.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"private": false,
"type": "module",
"scripts": {
"dev": "npm-run-all clean && rollup -c -w",
"bundle": "rollup -c",
"build": "npm-run-all clean bundle",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit --pretty",
"eslint": "eslint . --fix",
"eslint:check": "eslint",
"lint": "npm-run-all eslint",
"lint:check": "npm-run-all typecheck eslint:check",
"test": "vitest --reporter verbose",
"test:check": "vitest run --reporter verbose",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhushanaj/react-hooks.abhushan.dev.git"
},
"keywords": [
"react",
"react-hooks",
"typescript",
"custom-react-hooks",
"esm"
],
"author": "Abhushan Adhikari Joshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/abhushanaj/react-hooks.abhushan.dev/issues"
},
"homepage": "https://github.com/abhushanaj/react-hooks.abhushan.dev#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^15.0.7",
"@types/node": "^22.5.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-vitest": "^0.3.22",
"jsdom": "^24.1.0",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
}