-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.85 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@xmanscript/has-error-boundary",
"version": "3.0.2",
"description": "Heigher order function to catch errors in component level and prevent app crash",
"repository": {
"type": "git",
"url": "https://github.com/laxmanpokhrel/xmanscript-has-error-boundary.git"
},
"type": "module",
"keywords": [],
"bugs": {
"url": "https://github.com/laxmanpokhrel/xmanscript-has-error-boundary/issues"
},
"homepage": "https://github.com/laxmanpokhrel/xmanscript-has-error-boundary#readme",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"commit": "cz",
"semantic-release": "semantic-release"
},
"exports": {
".": "./lib/index.js"
},
"author": "Laxman Pokhrel",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.6.2",
"@types/react": "^18.2.28",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --cache --write"
]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/react-dom": "^18.2.13",
"react": "^18.2.0"
}
}