-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.47 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
{
"name": "Lumshot",
"private": true,
"license": "MIT",
"version": "2.0.1",
"description": "Turn any image into something beautiful.",
"author": "Ayaxsoft",
"type": "module",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"preview": "vite preview",
"lint": "eslint .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"test": "vitest run",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tabler/icons-react": "^3.40.0",
"@types/react-syntax-highlighter": "^15.5.13",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"electron-updater": "^6.8.3",
"html-to-image": "^1.11.13",
"immer": "^11.1.4",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^16.1.1",
"resend": "^6.9.4",
"sharp": "^0.34.5",
"tailwind-merge": "^3.5.0",
"use-sync-external-store": "^1.6.0",
"zundo": "^2.3.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@electron/rebuild": "^4.0.3",
"@eslint/js": "^9.0.0",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^4.1.0",
"autoprefixer": "^10.4.27",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.4.0",
"happy-dom": "^20.8.4",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.57.1",
"vite": "^5.1.6",
"vite-plugin-electron": "^0.28.6",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "^4.1.0"
},
"main": "dist-electron/main.js"
}