-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "react-hooks-extension",
"version": "1.1.0",
"type": "module",
"description": "The extension of react hooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/BooYeu/react-hooks-extension.git"
},
"keywords": [
"react",
"react-hooks",
"react-hooks-extension"
],
"author": "BooYeu - llr",
"license": "ISC",
"bugs": {
"url": "https://github.com/BooYeu/react-hooks-extension/issues"
},
"homepage": "https://github.com/BooYeu/react-hooks-extension#readme",
"scripts": {
"build": "tsup index.ts --dts --clean --format esm"
},
"files": [
"dist/**"
],
"devDependencies": {
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "8.22",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"prettier": "^2.8.3",
"react": "*",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "*"
}
}