forked from VOICEVOX/voicevox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 5.03 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
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"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-ui:unit": "vitest --ui",
"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",
"test:storybook-vrt": "cross-env TARGET=storybook playwright test",
"lint": "eslint --ext .js,.vue,.ts,.mts *.config.* src tests build .storybook",
"fmt": "eslint --ext .js,.vue,.ts,.mts *.config.* src tests build .storybook --fix",
"markdownlint": "markdownlint --ignore node_modules/ --ignore dist/ --ignore dist_electron/ ./",
"typecheck": "vue-tsc --noEmit",
"typos": "cross-env ./build/vendored/typos/typos",
"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": "npm run postinstall:packages && npm run postinstall:download-scripts",
"postinstall:packages": "electron-builder install-app-deps && playwright install chromium",
"postinstall:download-scripts": "node build/download7z.js && node build/downloadTypos.js",
"postuninstall": "electron-builder install-app-deps",
"license:generate": "node build/generateLicenses.js",
"license:merge": "node build/mergeLicenses.js",
"storybook": "storybook dev --port 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@gtm-support/vue-gtm": "1.2.3",
"@quasar/extras": "1.10.10",
"@sevenc-nanashi/utaformatix-ts": "npm:@jsr/[email protected]",
"async-lock": "1.4.0",
"dayjs": "1.10.7",
"electron-log": "5.1.2",
"electron-window-state": "5.0.3",
"encoding-japanese": "1.0.30",
"fast-array-diff": "1.1.0",
"fast-base64": "0.1.8",
"glob": "8.0.3",
"hotkeys-js": "3.13.6",
"immer": "9.0.21",
"markdown-it": "13.0.2",
"move-file": "3.0.0",
"multistream": "4.1.0",
"pixi.js": "7.4.0",
"quasar": "2.17.0",
"radix-vue": "1.9.6",
"rfdc": "1.4.1",
"semver": "7.5.4",
"shlex": "2.1.2",
"systeminformation": "5.21.15",
"tree-kill": "1.2.2",
"vue": "3.5.11",
"vuedraggable": "4.1.0",
"vuex": "4.0.2",
"zod": "3.22.4"
},
"optionalDependencies": {
"dmg-license": "1.0.11"
},
"devDependencies": {
"@chromatic-com/storybook": "1.5.0",
"@openapitools/openapi-generator-cli": "2.13.4",
"@playwright/test": "1.48.0",
"@quasar/vite-plugin": "1.7.0",
"@storybook/addon-essentials": "8.3.5",
"@storybook/addon-interactions": "8.3.5",
"@storybook/addon-links": "8.3.5",
"@storybook/addon-themes": "8.3.5",
"@storybook/blocks": "8.3.5",
"@storybook/experimental-addon-test": "8.3.5",
"@storybook/test": "8.3.5",
"@storybook/types": "8.3.5",
"@storybook/vue3": "8.3.5",
"@storybook/vue3-vite": "8.3.5",
"@types/async-lock": "1.4.0",
"@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/wicg-file-system-access": "2020.9.6",
"@types/yargs": "17.0.32",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"@typescript-eslint/types": "7.15.0",
"@typescript-eslint/utils": "7.15.0",
"@vitejs/plugin-vue": "5.1.4",
"@vitest/browser": "2.1.2",
"@vitest/ui": "2.1.2",
"@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",
"chromatic": "11.5.4",
"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.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-vue": "9.26.0",
"happy-dom": "8.4.2",
"license-checker-rseidelsohn": "4.3.0",
"markdownlint-cli": "0.37.0",
"playwright": "1.48.0",
"prettier": "3.2.5",
"sass": "1.77.8",
"storybook": "8.3.5",
"ts-node": "10.9.1",
"typescript": "5.5.2",
"vite": "5.3.2",
"vite-plugin-checker": "0.8.0",
"vite-plugin-electron": "0.28.4",
"vite-plugin-node-polyfills": "0.21.0",
"vite-tsconfig-paths": "4.2.1",
"vitest": "2.1.2",
"vue-tsc": "2.1.6",
"yargs": "17.2.1"
}
}