-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "@unholster/react-use-config",
"version": "2.0.1",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs --tsconfig ./tsconfig.json",
"lint": "prettier --write ./src && eslint --fix --ext .ts,.tsx ./src"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "^3.4.1"
},
"files": [
"dist"
]
}