-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.72 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "arrow-hooks",
"version": "0.0.11",
"description": "A collection of practical React hooks with TypeScript support.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"hooks",
"typescript",
"react-hooks",
"custom-hooks",
"utilities"
],
"author": "Zeno_St",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Zeno2019/arrow-hooks.git"
},
"bugs": {
"url": "https://github.com/Zeno2019/arrow-hooks/issues"
},
"homepage": "https://github.com/Zeno2019/arrow-hooks#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.1.2",
"@types/node": "^22.10.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.0.0",
"jsdom": "^23.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"terser": "^5.26.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0",
"vitest": "^1.0.0"
}
}