-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 932 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 932 Bytes
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
{
"name": "hrnet-react-modal-101",
"version": "1.0.4",
"description": "A simple modal component to demonstrate publishing to npm",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc && cp package.json README.md ./dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Yann-GitHub/hrnet-react-modal-101.git"
},
"keywords": [
"react",
"typescript",
"modal",
"component"
],
"author": "Yann.b",
"license": "ISC",
"homepage": "https://github.com/Yann-GitHub/hrnet-react-modal-101#readme",
"devDependencies": {
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@types/node": "^20.5.0",
"styled-components": "^6.0.7"
}
}