-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.18 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "voice-paste",
"version": "0.1.0",
"description": "Push-to-talk speech-to-text with auto-paste. Hold a hotkey, speak, release — your words are transcribed and pasted instantly.",
"main": "./out/main/index.js",
"author": {
"name": "Konrad Sroga",
"email": "konradsroga@gmail.com",
"url": "https://github.com/ksroga"
},
"license": "MIT",
"homepage": "https://github.com/ksroga/voice-paste",
"repository": {
"type": "git",
"url": "https://github.com/ksroga/voice-paste.git"
},
"bugs": {
"url": "https://github.com/ksroga/voice-paste/issues"
},
"keywords": [
"speech-to-text",
"voice",
"transcription",
"whisper",
"groq",
"push-to-talk",
"electron",
"dictation",
"voice-typing",
"clipboard"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"rebuild:electron": "npx --yes @electron/rebuild@3.7.1 -v 35.7.5 -m .",
"lint": "eslint src/",
"typecheck": "vue-tsc --noEmit",
"test:unit": "vitest run tests/unit/",
"test:unit:watch": "vitest tests/unit/",
"package": "electron-builder --win --x64",
"package:mac": "electron-builder --mac",
"package:linux": "electron-builder --linux",
"package:all": "electron-builder --win --x64 --mac --linux",
"package:dir": "electron-builder --win --x64 --dir"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"easy-volume": "^1.2.0",
"electron-updater": "^6.3.0",
"groq-sdk": "^0.9.0",
"uiohook-napi": "^1.5.4",
"vue-i18n": "^9.14.5"
},
"devDependencies": {
"@electron-toolkit/utils": "^4.0.0",
"@types/better-sqlite3": "^7.6.12",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/test-utils": "^2.4.0",
"electron": "^35.7.5",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.0",
"naive-ui": "^2.40.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.0",
"vite": "^6.0.0",
"vitest": "^4.1.0",
"vue": "^3.5.0",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^2.2.0"
}
}