-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.16 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
{
"name": "winhooks",
"version": "0.0.5",
"description": "Some useful react hooks collections.",
"author": {
"name": "winme",
"email": "winme0308@gmail.com"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"bugs": {
"email": "winme0308@gmail.com",
"url": "https://github.com/WinmezzZ/react-hooks/issues"
},
"main": "cjs/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"files": [
"cjs",
"es"
],
"repository": {
"type": "git",
"url": "git@github.com:WinmezzZ/react-hooks.git"
},
"homepage": "https://github.com/WinmezzZ/react-hooks",
"keywords": [
"react-hooks"
],
"license": "MIT",
"scripts": {
"build:package": "rollup -c rollup.config.js"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@swc/core": "^1.3.3",
"@swc/helpers": "^0.4.11",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/webpack-env": "^1.16.3",
"@winme/eslint-config-react-base": "^0.0.7",
"rollup": "^2.70.1",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}