forked from AniX-org/AniX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.41 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.41 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
90
91
92
93
{
"name": "AnixDesktop",
"version": "0.1.1",
"author": "Leonid Osman (Lorendos)",
"private": true,
"main": "main.js",
"scripts": {
"dev": "concurrently -n \"NEXT,ELECTRON\" -c \"yellow,blue\" --kill-others \"next dev\" \"wait-on http://localhost:3000 && electron .\"",
"build": "next build && electron-builder",
"start": "next start",
"lint": "next lint",
"postinstall": "flowbite-react patch",
"electron": "electron main.js"
},
"dependencies": {
"apexcharts": "^3.52.0",
"concurrently": "^9.2.0",
"deepmerge-ts": "^7.1.0",
"electron-log": "5.4.1",
"flowbite": "^2.4.1",
"flowbite-react": "^0.11.9",
"hls-video-element": "^1.5.0",
"markdown-to-jsx": "^7.4.7",
"media-chrome": "^4.9.0",
"next": "^15.4.2",
"next-runtime-env": "^3.3.0",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-cropper": "^2.3.3",
"react-dom": "^19.1.0",
"react-toastify": "^11.0.5",
"swiper": "^11.1.4",
"swr": "^2.2.5",
"videojs-video-element": "^1.4.1",
"zustand": "^4.5.4"
},
"devDependencies": {
"@iconify-json/fa6-brands": "^1.1.21",
"@iconify-json/material-symbols": "^1.1.83",
"@iconify-json/mdi": "^1.1.67",
"@iconify-json/solar": "^1.2.2",
"@iconify-json/twemoji": "^1.1.15",
"@iconify/tailwind": "^1.1.1",
"@types/node": "20.14.12",
"@types/react": "18.3.3",
"copy-webpack-plugin": "^12.0.2",
"electron": "^37.2.3",
"electron-builder": "^24.13.3",
"eslint": "^8.0.0",
"eslint-config-next": "14.2.5",
"eslint-plugin-react-refresh": "^0.4.19",
"postcss": "^8.5.6",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "3.4.1",
"wait-on": "^8.0.3"
},
"build": {
"appId": "com.lorendos.anixdesktop",
"productName": "AnixDesktop",
"files": [
"main.js",
"production-server.js",
"next.config.js",
"public/**/*",
".next/**/*",
"node_modules/**/*",
"package.json",
"pages/**/*",
"app/**/*",
"public/loading.html",
"components/**/*",
".flowbite-react"
],
"directories": {
"buildResources": "public/icons",
"output": "dist"
},
"win": {
"icon": "public/icons/app.ico",
"target": "nsis"
},
"linux": {
"icon": "public/icons/app.png"
},
"asar": false,
"extraResources": [
{
"from": "public/icons",
"to": "icons"
}
]
}
}