-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.69 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.69 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
{
"name": "woodls",
"version": "2.9.2",
"description": "Woodls : Auto voice typing",
"main": "index.js",
"author": "Satyam Yadav",
"license": "ISC",
"type": "commonjs",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"postinstall": "electron-rebuild"
},
"devDependencies": {
"@electron/rebuild": "^3.3.0",
"electron": "^33.2.0",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.satyam.autovoicetyping",
"productName": "Woodls",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!dist/**/*",
"!node_modules/node-global-key-listener/bin/MacKeyServer"
],
"asarUnpack": [
"**/*.dll",
"node_modules/node-global-key-listener/**/*",
"node_modules/@jitsi/robotjs/**/*",
"node_modules/active-win/**/*",
"assets/whisper/**/*"
],
"win": {
"target": "nsis",
"icon": "build/woodls.ico",
"publisherName": "Satyam Yadav"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"protocols": [
{
"name": "Woodls",
"schemes": [
"woodls"
]
}
],
"publish": [
{
"provider": "github",
"owner": "SimpleCyber",
"repo": "Woodls"
}
]
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@jitsi/robotjs": "^0.6.18",
"active-win": "^8.2.1",
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"electron-updater": "^6.7.3",
"firebase": "^12.7.0",
"node-global-key-listener": "0.1.1",
"serve-handler": "^6.1.6"
}
}