forked from VOICEVOX/voicevox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.24 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
117
118
119
120
121
122
123
124
125
126
{
"name": "voicevox",
"version": "999.999.999",
"author": "Hiroshiba Kazuyuki",
"private": true,
"main": "./dist/main.js",
"engines": {
"node": ">=20.12.2 <21",
"npm": ">=10.5.0 <11"
},
"volta": {
"node": "20.12.2",
"npm": "10.5.0"
},
"scripts": {
"test:unit": "vitest --run",
"test-watch:unit": "vitest --watch",
"test:electron-e2e": "cross-env VITE_TARGET=electron playwright test",
"test-watch:electron-e2e": "cross-env PWTEST_WATCH=1 VITE_TARGET=electron playwright test",
"test:browser-e2e": "cross-env VITE_TARGET=browser playwright test",
"test-watch:browser-e2e": "cross-env PWTEST_WATCH=1 VITE_TARGET=browser playwright test",
"lint": "eslint --ext .js,.vue,.ts *.config.* src tests build",
"fmt": "eslint --ext .js,.vue,.ts *.config.* src tests build --fix",
"markdownlint": "markdownlint --ignore node_modules/ --ignore dist/ --ignore dist_electron/ ./",
"typecheck": "vue-tsc --noEmit",
"electron:build": "cross-env VITE_TARGET=electron vite build && electron-builder --config electron-builder.config.js --publish never",
"electron:serve": "cross-env VITE_TARGET=electron vite",
"browser:serve": "cross-env VITE_TARGET=browser vite",
"browser:build": "cross-env VITE_TARGET=browser vite build",
"postinstall": "electron-builder install-app-deps && node build/download7z.js",
"postuninstall": "electron-builder install-app-deps",
"license:generate": "node build/generateLicenses.js",
"license:merge": "node build/mergeLicenses.js"
},
"dependencies": {
"@gtm-support/vue-gtm": "1.2.3",
"@quasar/extras": "1.10.10",
"async-lock": "1.4.0",
"buffer": "6.0.3",
"clone-deep": "4.0.1",
"dayjs": "1.10.7",
"electron-log": "5.0.0",
"electron-window-state": "5.0.3",
"encoding-japanese": "1.0.30",
"fast-array-diff": "1.1.0",
"glob": "8.0.3",
"hotkeys-js": "3.13.6",
"immer": "9.0.21",
"markdown-it": "13.0.2",
"midi-file": "1.2.4",
"move-file": "3.0.0",
"multistream": "4.1.0",
"pixi.js": "7.4.0",
"quasar": "2.11.6",
"semver": "7.5.4",
"shlex": "2.1.2",
"source-map-support": "0.5.19",
"systeminformation": "5.21.15",
"tree-kill": "1.2.2",
"uuid": "9.0.0",
"vue": "3.4.26",
"vuedraggable": "4.1.0",
"vuex": "4.0.2",
"zod": "3.22.4"
},
"optionalDependencies": {
"dmg-license": "1.0.11"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "2.13.4",
"@playwright/test": "1.43.1",
"@quasar/vite-plugin": "1.6.0",
"@types/async-lock": "1.4.0",
"@types/clone-deep": "4.0.1",
"@types/diff": "5.0.3",
"@types/electron-devtools-installer": "2.2.2",
"@types/encoding-japanese": "1.0.18",
"@types/glob": "8.0.0",
"@types/markdown-it": "12.2.0",
"@types/multistream": "4.1.0",
"@types/semver": "7.3.9",
"@types/unzipper": "0.10.5",
"@types/uuid": "8.3.4",
"@types/wicg-file-system-access": "2020.9.6",
"@types/yargs": "17.0.32",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"@typescript-eslint/types": "7.6.0",
"@typescript-eslint/utils": "7.6.0",
"@vitejs/plugin-vue": "5.0.4",
"@voicevox/eslint-plugin": "file:./eslint-plugin",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/test-utils": "2.4.5",
"cross-env": "7.0.3",
"dotenv": "16.0.0",
"electron": "30.0.1",
"electron-builder": "24.13.3",
"electron-devtools-installer": "3.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-vue": "9.5.1",
"happy-dom": "8.4.2",
"license-checker-rseidelsohn": "4.3.0",
"markdownlint": "0.31.1",
"markdownlint-cli": "0.37.0",
"optionator": "0.9.1",
"prettier": "3.2.5",
"sass": "1.32.13",
"sass-loader": "8.0.2",
"tmp": "0.2.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"typescript": "5.4.5",
"vite": "5.2.9",
"vite-plugin-checker": "0.6.4",
"vite-plugin-electron": "0.28.4",
"vite-plugin-node-polyfills": "0.21.0",
"vite-tsconfig-paths": "4.2.1",
"vitest": "1.5.0",
"vue-tsc": "1.8.19",
"yargs": "17.2.1"
}
}