-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 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
{
"name": "easy-dialogs",
"version": "0.1.8",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react",
"modal",
"dialogs",
"dialog",
"react-dialog",
"dialog-manager",
"jotai",
"react-modals",
"modal-manager"
],
"author": "floyare",
"license": "ISC",
"description": "Function based dialogs manager for React",
"sideEffects": false,
"scripts": {
"build": "vitest run --typecheck && rollup -c",
"prepare": "npm run build",
"test": "vitest",
"test:run": "vitest run",
"test:type": "tsc --noEmit",
"test:all": "vitest run --typecheck"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"jotai": "^2.10.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"jsdom": "^28.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rollup": "^4.28.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}