-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.56 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
{
"name": "@zemd/react-modals",
"version": "1.0.1",
"description": "A lightweight React modal management library.",
"license": "Apache-2.0",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"author": {
"name": "Dmytro Zelenetskyi",
"email": "dmytro.zelenetskyi@gmail.com",
"url": "https://zemd.dev"
},
"homepage": "https://github.com/zemd/react-modals",
"repository": {
"type": "git",
"url": "git+https://github.com/zemd/react-modals.git"
},
"bugs": {
"url": "https://github.com/zemd/react-modals/issues"
},
"type": "module",
"module": "./dist/index.mjs",
"scripts": {
"build": "tsdown --minify",
"changeset": "changeset",
"dev": "tsdown --watch",
"format": "prettier --write . --ignore-unknown",
"lint": "eslint \"**/*.{ts,tsx}\"",
"prepare": "husky",
"release": "changeset publish"
},
"keywords": [
"react",
"component",
"modals",
"library"
],
"files": [
"dist"
],
"peerDependencies": {
"react": ">=19",
"react-dom": ">=19"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@types/node": "25.9.3",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@zemd/eslint-react": "3.0.4",
"@zemd/tsconfig": "2.0.0",
"eslint": "10.5.0",
"husky": "9.1.7",
"prettier": "3.8.4",
"react": "19.2.7",
"react-dom": "19.2.7",
"tsdown": "0.22.2",
"typescript": "6.0.3"
},
"publishConfig": {
"access": "public"
}
}