forked from ucfx/react-pert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.44 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.44 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-pert",
"version": "0.0.0-development",
"type": "module",
"license": "MIT",
"description": "Interactive PERT chart component for React",
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/ucfx/react-pert#readme",
"repository": {
"type": "git",
"url": "https://github.com/ucfx/react-pert"
},
"author": {
"name": "Youcef Hammadi",
"email": "ucefhammadi@gmail.com"
},
"scripts": {
"dev": "vite",
"prebuild": "rimraf dist",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@types/node": "^22.13.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"lucide-react": "^0.475.0",
"postcss": "^8.5.1",
"react-colorful": "^5.6.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"tailwind-merge": "^3.0.1",
"tailwindcss": "3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vaul": "^1.1.2",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-lib-inject-css": "^2.2.1",
"vite-tsconfig-paths": "^5.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"keywords": [
"react",
"pert",
"pert chart",
"react-pert",
"react pert",
"graph",
"diagram",
"chart"
]
}