-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "@optum/react-hooks",
"version": "1.0.4",
"description": "A reusable set of React hooks",
"repository": "https://github.com/Optum/react-hooks",
"license": "Apache 2.0",
"sideEffects": false,
"scripts": {
"build": "tsc --project tsconfig.json",
"prepack": "yarn build",
"format": "yarn format:nowrite --write",
"format:nowrite": "prettier --ignore-path .gitignore \"**/*.+(js|ts|tsx|html|css|scss|json)\"",
"format:check": "yarn format:nowrite --list-different"
},
"files": [
"build/**"
],
"main": "./build/cjs/index.js",
"types": "./build/types/cjs/index.d.ts",
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.10",
"@jest/globals": "^29.5.0",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^26.0.5",
"@types/react": "^18.0.25",
"eslint": "^8.28.0",
"jest": "^27.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^27.0.5",
"typescript": "^5.1.3"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"dependencies": {
"tslib": "^2.3.1"
},
"exports": {
".": {
"require": {
"types": "./build/types/cjs/index.d.ts",
"default": "./build/cjs/index.js"
},
"types": "./build/types/cjs/index.d.ts",
"default": "./build/cjs/index.js"
}
},
"publishConfig": {
"access": "public"
},
"stableVersion": "1.8.0-next.245",
"packageManager": "[email protected]"
}