-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.38 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
{
"name": "voice-writing-electron",
"version": "1.0.1",
"description": "Voice Writing App using Electron",
"main": "./src/main/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"dist": "electron-builder --dir",
"pack": "electron-builder --dir",
"webpack": "webpack --mode production",
"dev:webpack": "webpack serve --mode development"
},
"build": {
"appId": "com.aviaryan.voicewriting",
"productName": "VoiceWriting",
"asar": true,
"files": [
"out/**/*",
"src/main/**/*",
"node_modules/**/*",
"package.json",
".env",
"loadEnv.js"
],
"directories": {
"buildResources": "build"
},
"win": {
"target": "nsis"
},
"mac": {
"icon": "images/icon",
"category": "public.app-category.utilities",
"target": "dir"
},
"linux": {
"target": "AppImage"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"css-loader": "^7.1.2",
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
"style-loader": "^4.0.0",
"svelte-loader": "^3.2.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"dotenv": "^16.4.5",
"groq-sdk": "^0.5.0",
"svelte": "^4.2.18",
"terminal.js": "^1.0.11",
"wcwidth": "^1.0.1"
}
}