-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "mimiuchi",
"type": "module",
"version": "0.5.0",
"private": true,
"description": "Customizable, osc enabled text interface for relaying text to different types of applications",
"author": "naeris <support@risu.dev>",
"license": "GPL-3.0",
"repository": "https://github.com/naeruru/mimiuchi",
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
],
"main": "dist-electron/main/index.js",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@mdi/font": "5.9.55",
"@xenova/transformers": "^2.17.2",
"electron-store": "^10.1.0",
"node-osc": "^9.1.5",
"pinia": "^3.0.3",
"roboto-fontface": "^0.10.0",
"vue-i18n": "^11.1.7",
"vue-router": "^4.5.1",
"vuetify": "^3.8.12",
"webfontloader": "^1.6.28",
"ws": "^8.18.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.1",
"@types/node": "^22",
"@types/node-osc": "^9.1.0",
"@types/webfontloader": "^1.6.38",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^6.0.0",
"electron": "31.1.0",
"electron-builder": "24.13.3",
"eslint": "^9.29.0",
"obs-websocket-js": "^5.0.6",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-electron": "0.28.7",
"vite-plugin-electron-renderer": "^0.14.6",
"vite-plugin-vuetify": "^2.1.1",
"vue": "^3.5.17",
"vue-tsc": "^2.2.10"
}
}