-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
116 lines (116 loc) · 3.71 KB
/
package.json
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "karbonized",
"private": true,
"version": "1.12.0",
"main": "dist-electron/main.js",
"author": {
"name": "Yoannis Sánchez Soto",
"email": "[email protected]",
"url": "http://yossthedev.github.io/"
},
"description": "Image Editing Made Easy",
"engines": {
"node": ">= 16"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:electron": "vite build -c vite.electron.config.ts",
"preview": "vite preview",
"tauri": "tauri",
"electron:dev": "vite -c vite.electron.config.ts",
"electron:build": "vite build -c vite.electron.config.ts && electron-builder",
"build:win": "npm run build:electron && electron-builder --win --config",
"build:mac": "npm run build:electron && electron-builder --mac --config",
"build:linux": "npm run build:electron && electron-builder --linux --config -c.snap.publish=github",
"android:build": "yarn build && npx cap sync && cd android && gradle build && cd ..",
"android:icons": "npx capacitor-assets generate --android --iconBackgroundColor '#141313' --logoSplashScale '0.6'"
},
"dependencies": {
"@capacitor-community/electron": "^4.1.2",
"@capacitor-community/media": "^5.2.1",
"@capacitor/android": "^5.2.3",
"@capacitor/clipboard": "^5.0.6",
"@capacitor/core": "^5.2.3",
"@capacitor/filesystem": "^5.1.2",
"@capacitor/share": "^5.0.6",
"@capacitor/status-bar": "^5.0.6",
"@capacitor/toast": "^5.0.6",
"@floating-ui/react-dom": "^1.0.1",
"@nextui-org/react": "^2.1.2",
"@tabler/icons-react": "^2.26.0",
"@tauri-apps/api": "^1.3.0",
"adm-zip": "^0.5.10",
"crypto-js": "^4.1.1",
"daisyui": "latest",
"easy-peasy": "^6.0.1",
"electron-is": "^3.0.0",
"file-saver": "^2.0.5",
"framer-motion": "^10.16.1",
"html-to-image": "^1.10.8",
"localforage": "^1.10.0",
"lowlight": "^2.7.0",
"luxon": "^3.1.0",
"prismjs": "^1.29.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-custom-scrollbars-2": "^4.5.0",
"react-daisyui": "^4.0.4",
"react-dom": "^18.2.0",
"react-headless-tabs": "^6.0.3",
"react-icons": "^4.10.1",
"react-infinite-viewer": "^0.27.1",
"react-live": "^4.1.3",
"react-markdown": "^8.0.7",
"react-movable": "^3.0.4",
"react-moveable": "^0.54.1",
"react-portal": "^4.2.2",
"react-router": "^6.10.0",
"react-selecto": "^1.26.0",
"react-syntax-highlighter": "^15.5.0",
"react-tweet": "^2.0.0",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"react-zoom-pan-pinch": "^3.0.7",
"refractor": "^4.8.0"
},
"devDependencies": {
"@capacitor/assets": "^2.0.4",
"@capacitor/cli": "^5.2.3",
"@tailwindcss/typography": "^0.5.8",
"@tauri-apps/cli": "^1.3.1",
"@types/adm-zip": "^0.5.0",
"@types/crypto-js": "^4.1.1",
"@types/file-saver": "^2.0.5",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-portal": "^4.0.4",
"@types/react-resizable": "^3.0.3",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@vitejs/plugin-react": "^3.0.1",
"autoprefixer": "^10.4.13",
"electron": "^25.3.0",
"electron-builder": "^24.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^38.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "latest",
"postcss": "^8.4.19",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"react-router-dom": "^6.4.3",
"tailwindcss": "^3.3.3",
"typescript": "*",
"vite": "^4.4.4",
"vite-plugin-electron": "^0.12.0",
"vite-plugin-pwa": "^0.16.4"
}
}