-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.59 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
{
"name": "plain-color",
"description": "Lightweight, versatile, cross-platform color picker app",
"private": false,
"version": "1.0.12",
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"t:dev": "tauri dev",
"t:build:debug": "tauri build --debug",
"t:build:release": "tauri build && node src-tauri/updater/generate-artifacts.js"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.7",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
"@tauri-apps/plugin-deep-link": "~2",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-global-shortcut": "~2",
"@tauri-apps/plugin-http": "~2",
"@tauri-apps/plugin-os": "~2",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2",
"@tauri-apps/plugin-updater": "~2",
"@tauri-apps/plugin-window": "^2.0.0-alpha.1",
"classnames": "^2.5.1",
"color-is-dark": "^1.0.1",
"color-namer": "^1.4.0",
"hex-rgb": "^5.0.0",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-cool-virtual": "^0.7.0",
"react-dom": "^18.2.0",
"react-merge-refs": "^2.1.1",
"react-router-dom": "^6.27.0",
"rgb-hex": "^4.1.0",
"zustand": "^5.0.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/color-namer": "^1.3.3",
"@types/node": "^22.8.6",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"sass": "^1.80.6",
"typescript": "^5.2.2",
"vite": "^5.3.1"
}
}