-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.87 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.87 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
{
"name": "@reactleaf/modal",
"version": "2.0.0",
"description": "React Modal Library with context",
"keywords": [
"context",
"modal",
"popup",
"react",
"typescript"
],
"homepage": "https://github.com/reactleaf/modal#readme",
"bugs": {
"url": "https://github.com/reactleaf/modal/issues"
},
"license": "MIT",
"author": "Hyeonseok Yang <FourwingsY@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/reactleaf/modal.git"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./style.css": "./style.css",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"dev:docs": "pnpm --filter ./docs dev",
"build:docs": "pnpm --filter ./docs build",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint src docs/app",
"prepare": "husky",
"test": "jest",
"verify:precommit": "pnpm lint && pnpm fmt:check",
"publish:npm": "pnpm build && npm publish --access public --ignore-scripts"
},
"dependencies": {
"classnames": "^2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.58.7",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.14",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.3.7",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.15.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.3.1",
"typescript": "^5.9.3",
"unplugin-dts": "^1.0.0",
"vite": "^7.3.2"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18 || ^19",
"react-dom": "^16 || ^17 || ^18 || ^19"
},
"packageManager": "pnpm@10.11.0"
}