-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 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
{
"name": "react-gradient-generator",
"private": false,
"version": "1.0.0",
"type": "module",
"description": "🎨 A powerful and intuitive gradient generator built with React and Canvas API. Create beautiful gradients with various shapes, directions, and export them as high-quality PNG images.",
"keywords": [
"react",
"gradient",
"generator",
"canvas",
"vite",
"color-picker",
"png-export",
"ui-tool"
],
"author": {
"name": "Your Name",
"email": "your-email@example.com"
},
"license": "MIT",
"homepage": "https://github.com/[username]/react-gradient-generator#readme",
"repository": {
"type": "git",
"url": "https://github.com/[username]/react-gradient-generator.git"
},
"bugs": {
"url": "https://github.com/[username]/react-gradient-generator/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"start": "npm run dev",
"deploy": "npm run build && npm run preview"
},
"dependencies": {
"file-saver": "^2.0.5",
"react": "^19.1.0",
"react-color": "^2.19.3",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"vite": "^7.0.4"
}
}