-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 KB
/
package.json
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
{
"name": "@reactleaf/modal",
"version": "1.1.7",
"description": "React Modal Library with context",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"deploy-example": "cd examples/with-cra && rm -rf node_modules/.cache && npm run build && touch build/.nojekyll && git add -f build/ && git branch -D gh-pages && git checkout -b gh-pages && git commit -m 'Deploy Example to gh-pages' && git push -f origin gh-pages:gh-pages && git checkout main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactleaf/modal.git"
},
"bugs": {
"url": "https://github.com/reactleaf/modal/issues"
},
"homepage": "https://github.com/reactleaf/modal#readme",
"directories": {
"example": "examples"
},
"keywords": [
"react",
"typescript",
"modal",
"context",
"popup"
],
"author": "Hyeonseok Yang <[email protected]>",
"license": "MIT",
"dependencies": {
"classnames": "^2"
},
"devDependencies": {
"@types/react": "^18.0.9",
"typescript": "^4"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18 || ^19",
"react-dom": "^16 || ^17 || ^18 || ^19"
}
}