-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "react-customizable-progressbar",
"version": "2.1.3",
"description": "Customizable circular SVG progress component for React",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src --ext ts,tsx",
"build:library": "vite build --config vite.config.library.ts",
"dev:examples": "vite --config vite.config.examples.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martyan/react-customizable-progressbar.git"
},
"keywords": [
"react",
"circular",
"progress",
"bar",
"component",
"customizable",
"svg",
"animation"
],
"homepage": "https://martinjuzl.com/react-customizable-progressbar",
"author": "Martin Juzl",
"license": "MIT",
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vitejs/plugin-react": "^5.1.2",
"date-fns": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"postcss": "^8.4.16",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-eslint": "^1.8.1"
},
"peerDependencies": {
"react": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}