-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
{
"name": "@aweebit/react-essentials",
"version": "0.10.8",
"type": "module",
"repository": "github:aweebit/react-essentials",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prettier:base": "prettier --write",
"prettier": "npm run prettier:base -- .",
"lint": "eslint --max-warnings=0",
"build": "rimraf dist && tsc -b -f",
"doc": "rimraf README.md && typedoc && node scripts/fixReadmeLinks.js && npm run prettier:base -- README.md",
"prepack": "npm run build && npm run doc",
"prepare": "husky"
},
"peerDependencies": {
"@types/react": ">=18",
"react": ">=18",
"typescript": ">=5.4"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.11",
"@types/react": "^18.3.28",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.8.1",
"react": "^18.3.1",
"rimraf": "^6.1.3",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0"
},
"license": "MIT",
"overrides": {
"eslint-plugin-react-hooks": {
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0"
}
}
}