-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "usehooks-jihostudy",
"version": "0.0.8",
"description": "Collection of React Custom Hooks",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"prepack": "yarn build",
"build": "yarn clean && yarn build:tsc && yarn build:js",
"build:tsc": "yarn tsc --emitDeclarationOnly",
"build:js": "node build.js",
"clean": "rm -rf dist"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"author": "Jiho Kim"
}