forked from VOICEVOX/voicevox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.49 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
{
"name": "voicevox",
"version": "999.999.999",
"author": "Hiroshiba Kazuyuki",
"private": true,
"engines": {
"node": ">=16.17.0 <17",
"npm": ">=8.11.0 <9"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test-watch:unit": "vue-cli-service test:unit --watch",
"test:e2e": "playwright test",
"test-watch:e2e": "vue-cli-service test:e2e --watch",
"lint": "vue-cli-service lint --no-fix",
"typecheck": "tsc --noEmit",
"typecheck:vue-tsc": "vue-tsc --noEmit",
"markdownlint": "markdownlint *.md",
"fmt": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:build_pnever": "vue-cli-service electron:build --publish never",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"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",
"clone-deep": "4.0.1",
"core-js": "3.12.1",
"dayjs": "1.10.7",
"dotenv": "16.0.0",
"electron-log": "4.4.8",
"electron-store": "8.1.0",
"electron-window-state": "5.0.3",
"encoding-japanese": "1.0.30",
"glob": "8.0.3",
"immer": "9.0.2",
"markdown-it": "12.0.4",
"move-file": "3.0.0",
"multistream": "4.1.0",
"quasar": "2.11.3",
"semver": "7.3.5",
"shlex": "2.1.2",
"source-map-support": "0.5.19",
"systeminformation": "5.8.0",
"tree-kill": "1.2.2",
"unzipper": "0.10.11",
"uuid": "9.0.0",
"vue": "3.2.45",
"vue-router": "4.0.8",
"vuedraggable": "4.1.0",
"vuex": "4.0.2",
"zod": "3.20.2",
"zod-to-json-schema": "3.20.1"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "2.3.3",
"@playwright/test": "1.23.3",
"@types/chai": "4.2.18",
"@types/clone-deep": "4.0.1",
"@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/mocha": "5.2.7",
"@types/mousetrap": "1.6.8",
"@types/multistream": "4.1.0",
"@types/semver": "7.3.9",
"@types/unzipper": "0.10.5",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"@vue/cli-plugin-babel": "4.5.13",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-plugin-router": "4.5.13",
"@vue/cli-plugin-typescript": "4.5.19",
"@vue/cli-plugin-unit-mocha": "4.5.13",
"@vue/cli-plugin-vuex": "4.5.13",
"@vue/cli-service": "4.5.13",
"@vue/compiler-sfc": "3.2.45",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "11.0.2",
"@vue/test-utils": "2.0.0-rc.6",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"electron": "20.3.3",
"electron-devtools-installer": "3.2.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-vue": "9.5.1",
"license-checker": "25.0.1",
"markdownlint": "0.23.1",
"markdownlint-cli": "0.28.1",
"mousetrap": "1.6.5",
"prettier": "2.3.0",
"sass": "1.32.13",
"sass-loader": "8.0.2",
"tmp": "0.2.1",
"typescript": "4.8.4",
"vue-cli-plugin-electron-builder": "3.0.0-alpha.4",
"vue-tsc": "0.40.13",
"yargs": "17.2.1"
}
}