-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) Β· 3.02 KB
/
package.json
File metadata and controls
117 lines (117 loc) Β· 3.02 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "mikucentral",
"private": true,
"version": "2.3.2",
"license": "AGPL-3.0",
"type": "module",
"description": "MikuCentral - Neural AI Interface",
"author": "Armando Martinez",
"main": "electron/main.cjs",
"build": {
"appId": "com.miku.central",
"productName": "MikuCentral",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"public/**/*",
"package.json"
],
"extraResources": [
{
"from": "engine",
"to": "engine",
"filter": [
"**/*",
"!searXena/local/**/*",
"!searXena/.miku/**/*",
"!searXena/.venv/**/*",
"!.venv/**/*"
]
},
{
"from": "core",
"to": "core"
},
{
"from": "backgrounds",
"to": "backgrounds"
}
],
"win": {
"target": "nsis",
"icon": "public/mikuBotICON.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "MikuCentral",
"include": "installer.nsh",
"installerLanguages": [
"en_US",
"es",
"zh_CN"
],
"warningsAsErrors": false,
"multiLanguageInstaller": true,
"displayLanguageSelector": true
},
"icon": "public/mikuBotICON.png"
},
"scripts": {
"typecheck": "tsc --noEmit",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:3001 && electron .\"",
"electron:build": "npm run build && electron-builder"
},
"dependencies": {
"@fontsource/architects-daughter": "^5.2.7",
"@fontsource/comfortaa": "^5.2.8",
"@fontsource/fira-code": "^5.2.7",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/lora": "^5.2.8",
"@fontsource/merriweather": "^5.2.11",
"@fontsource/montserrat": "^5.2.8",
"@fontsource/orbitron": "^5.2.8",
"@fontsource/playfair-display": "^5.2.8",
"@fontsource/questrial": "^5.2.8",
"@fontsource/roboto": "^5.2.10",
"@fontsource/sacramento": "^5.2.8",
"@fortawesome/fontawesome-free": "^7.1.0",
"@tailwindcss/vite": "^4.1.18",
"i18next": "^26.0.2",
"mermaid": "^11.14.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^17.0.1",
"unzipper": "^0.12.3",
"zustand": "^5.0.12"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wait-on": "^9.0.4"
},
"optionalDependencies": {
"@types/fluent-ffmpeg": "^2.1.28",
"ffmpeg-static": "^5.3.0",
"fluent-ffmpeg": "^2.1.3",
"node-record-lpcm16": "^1.0.1"
}
}