forked from akash-d-dev/Open-Cluely
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.77 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.77 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
{
"name": "stealth-meeting-assistant",
"version": "1.0.0",
"description": "Invisible AI assistant for meetings - undetectable during screen share",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"dev": "electron . --enable-logging",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@google/generative-ai": "^0.2.1",
"dotenv": "^16.3.1",
"node-window-manager": "^2.2.4",
"screenshot-desktop": "^1.15.0",
"ws": "^8.19.0"
},
"devDependencies": {
"electron": "^28.3.3",
"electron-builder": "^24.0.0",
"esbuild": "^0.25.6"
},
"build": {
"appId": "com.google.chrome",
"productName": "Google Chrome (2)",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"package.json",
"node_modules/**/*",
"!node_modules/.cache/**/*",
"!.git/**/*",
"!dist/**/*"
],
"asarUnpack": [
"node_modules/screenshot-desktop/**/*",
"node_modules/node-window-manager/**/*"
],
"extraResources": [
{
"from": ".env",
"to": ".env"
}
],
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/chrome.icns"
},
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "assets/chrome.ico",
"requestedExecutionLevel": "asInvoker",
"verifyUpdateCodeSignature": false,
"publisherName": "Google LLC",
"fileAssociations": []
},
"portable": {
"artifactName": "GoogleChrome.exe"
},
"linux": {
"target": "AppImage",
"icon": "assets/chrome.png"
}
},
"author": "Shubham",
"license": "MIT"
}