-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.06 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
72
73
74
75
76
{
"name": "@chanyatfu/hooks",
"version": "1.0.0",
"description": "🪝",
"author": "Chan Yat Fu",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage --watchAll",
"build": "rm -rf dist/ && rollup -c",
"bnl": "pnpm build && pnpm link --global"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chanyatfu/hooks.git"
},
"keywords": [
"react",
"reactjs",
"nextjs",
"react-hooks",
"hooks"
],
"bugs": {
"url": "https://github.com/chanyatfu/hooks/issues"
},
"homepage": "https://github.com/chanyatfu/hooks#readme",
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-pipeline-operator": "^7.24.1",
"@eslint/js": "^9.0.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.0",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.7",
"@types/react": "^18.2.75",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^9.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"globals": "^15.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"jsdom": "^24.0.0",
"rollup": "^4.14.2",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"uuid": "^9.0.1"
}
}