-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 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
{
"name": "@hamshad/pie-chart",
"version": "1.0.4",
"description": "A beautiful, animated pie chart component with rounded corners for React",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "vite",
"dev:example": "vite",
"build:lib": "rollup -c",
"build:example": "vite build --outDir example-dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"pie-chart",
"chart",
"visualization",
"rounded",
"animated",
"donut-chart"
],
"author": "Hamshad",
"license": "MIT",
"peerDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^4.0.0",
"rollup": "^3.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.6.0",
"typescript": "^5.0.0",
"vite": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hamshad/pie-chart.git"
}
}