-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "react-components-hooks",
"version": "1.0.20",
"description": "Easy-to-use react components and hooks",
"keywords": [
"easy-to-use",
"react",
"components",
"hooks",
"usefull"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Leejha/react-components-hooks.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"scripts": {
"build": "rm -rf dist/ && rollup -c"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.5",
"@types/react": "^18.2.47",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"react": "^18.2.0",
"rollup": "^4.9.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18"
}
}