-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.42 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.42 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@stainless-code/react-modal-manager",
"version": "1.0.1",
"description": "A powerful, type-safe modal management system for React applications",
"keywords": [
"react",
"modal",
"manager",
"typesafe",
"modal-manager",
"react-modal-manager"
],
"homepage": "https://github.com/stainless-code/react-modal-manager#readme",
"bugs": "https://github.com/stainless-code/react-modal-manager/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/stainless-code/react-modal-manager.git"
},
"license": "MIT",
"author": {
"name": "Sutu Sebastian",
"email": "sebastian.sutu@stainless-code.com",
"url": "https://github.com/SutuSebastian"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"clean": "rimraf dist node_modules",
"dev": "tsdown --watch",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "clean-package",
"prepublishOnly": "bun run build",
"release": "changeset publish",
"test": "vitest run",
"typecheck": "tsc",
"version": "changeset version"
},
"dependencies": {
"nanoid": "^5.1.5",
"zustand": "^5.0.8"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.2",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.6",
"@eslint-react/eslint-plugin": "^1.53.0",
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "16.3.0",
"@types/bun": "1.2.21",
"@types/react": "19.1.12",
"clean-package": "2.2.0",
"eslint": "^9.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"jsdom": "26.1.0",
"prettier": "3.6.2",
"prettier-plugin-packagejson": "2.5.19",
"rimraf": "6.0.1",
"tsdown": "^0.14.2",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"clean-package": {
"remove": [
"devDependencies",
"clean-package"
],
"replace": {
"scripts": {
"postpublish": "clean-package restore"
}
}
}
}