-
Notifications
You must be signed in to change notification settings - Fork 271
/
package.json
84 lines (84 loc) · 2.36 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
{
"name": "polyglot",
"version": "0.3.7",
"private": true,
"description": "Spoken language generation based on OpenAI",
"author": "Liou666 <[email protected]>",
"license": "MIT",
"repository": "https://github.com/liou666/polyglot",
"keywords": [
"ChatGPT",
"AI",
"TTS"
],
"main": "dist-electron/main/index.js",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"publish": {
"provider": "github",
"releaseType": "release"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:app": "pnpm build && electron-builder",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s 0",
"release:win": "rimraf release && pnpm build && electron-builder --win --publish always",
"release:app": "rimraf release && pnpm build && electron-builder --mac --win --publish always",
"release:version": "npx standard-version && git push origin --follow-tags"
},
"dependencies": {
"@iconify-json/svg-spinners": "^1.1.1",
"@vueuse/core": "^9.13.0",
"api2d": "^0.1.18",
"dexie": "^3.2.3",
"electron-updater": "^5.3.0",
"element-plus": "^2.3.3",
"eventsource-parser": "^0.1.0",
"microsoft-cognitiveservices-speech-sdk": "^1.26.0",
"pinia": "^2.0.33",
"pinia-plugin-persistedstate": "^3.1.0",
"unocss": "^0.50.4",
"uuid": "^9.0.0",
"vue": "^3.2.47",
"vue-router": "4"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.16",
"@iconify-json/eos-icons": "^1.1.6",
"@iconify-json/ic": "^1.1.13",
"@liou666/eslint-config-vue": "^0.0.1",
"@types/dexie": "^1.3.1",
"@types/uuid": "^9.0.1",
"@vitejs/plugin-vue": "^4.0.0",
"conventional-changelog-cli": "^2.2.2",
"electron": "^23.1.1",
"electron-builder": "^23.6.0",
"eslint": "^8.36.0",
"rimraf": "^5.0.0",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.15.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.1.4",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-electron-renderer": "^0.12.1",
"vue-tsc": "^1.1.7"
},
"nodeVersion": ">=17",
"eslintConfig": {
"extends": [
"@liou666/eslint-config-vue"
],
"ignorePatterns": [
"dist-electron",
"dist",
"release"
]
}
}