-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 848 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 848 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
{
"name": "react-pretty-badge",
"version": "1.0.2",
"description": "A simple and stylish React badge component.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"dev": "tsc --watch"
},
"keywords": [],
"author": "Yatish Kelkar <yatish1606@gmail.com> (https://yatish.netlify.app)",
"license": "ISC",
"peerDependencies": {
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"rollup": "^4.34.8",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
}
}