-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.23 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
{
"name": "ZColor",
"version": "2.0.1",
"description": "Professional color toolkit for designers and developers – Chrome extension & cross‑platform desktop app with 2,200+ colors, 2,000+ gradients, SVG icon builder, and color picker",
"keywords": [
"color-palette",
"gradient-generator",
"icon-builder",
"chrome-extension",
"electron-app",
"design-tools",
"color-picker",
"svg-icons",
"frontend-tools"
],
"author": {
"name": "Abolfazl Cheloyi",
"email": "achdev@achdev.ir",
"url": "https://github.com/cheloei"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cheloei/ZColor.git"
},
"bugs": {
"url": "https://github.com/cheloei/ZColor/issues"
},
"homepage": "https://github.com/cheloei/ZColor#readme",
"scripts": {
"clean": "rimraf dist dist-electron release node_modules/.cache .cache",
"build": "npm run clean && node scripts/web-build.js && tsc",
"start": "npm run build && node scripts/start-server.js",
"dist": "npm run build && tsc -p tsconfig.electron.json && electron-builder"
},
"devDependencies": {
"@types/chrome": "^0.0.246",
"@types/node": "^25.6.0",
"electron": "^42.3.3",
"electron-builder": "^26.15.2",
"rimraf": "^6.1.3",
"serve": "^14.2.6",
"tar": "^7.5.16",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@aasaam/brand-icons": "^0.0.27",
"@fortawesome/fontawesome-free": "^7.2.0",
"@material-design-icons/svg": "^0.14.15",
"@phosphor-icons/core": "^2.1.1",
"bootstrap-icons": "^1.13.1",
"feather-icons": "^4.29.2",
"lucide-static": "^1.8.0",
"remixicon": "^4.9.1",
"unzipper": "^0.12.3"
},
"build": {
"appId": "com.zcolor.app",
"productName": "ZColor",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"extraMetadata": {
"main": "dist-electron/main.js"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "dist/assets/icon.ico"
},
"linux": {
"target": [
"AppImage"
]
},
"asar": true
}
}