-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "@neeppy/modal-manager",
"version": "4.0.0",
"description": "Simple, customizable state manager for modals.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"prepack": "tsc",
"test": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --max-warnings 9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neeppy/react-modal-manager.git"
},
"keywords": [
"react",
"modal",
"hooks"
],
"engines": {
"node": ">=18"
},
"author": "neeppy",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/react": ">=16.8.0",
"eslint": "^9.35.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"vitest": "^3.2.4"
}
}