forked from google-gemini/multimodal-live-api-web-console
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
171 lines (171 loc) · 4.66 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "scrensense-ai",
"version": "0.1.0",
"description": "An AI assistant that lives in your computer, helping you with daily tasks through screen interaction, translation, and other capabilities.",
"author": {
"name": "Sahil Marwaha"
},
"main": "./build/electron/main.js",
"dependencies": {
"@nut-tree-fork/nut-js": "^4.2.3",
"@parcel/watcher": "^2.1.0",
"classnames": "^2.5.1",
"dotenv-flow": "^4.1.0",
"eventemitter3": "^5.0.1",
"lodash": "^4.17.21",
"posthog-js": "^1.205.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-scripts": "5.0.1",
"react-select": "^5.8.3",
"react-syntax-highlighter": "^15.6.1",
"sass": "^1.80.6",
"vega": "^5.30.0",
"vega-embed": "^6.29.0",
"vega-lite": "^5.23.0",
"web-vitals": "^2.1.4",
"zustand": "^5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:react": "cross-env PUBLIC_URL=./ NODE_ENV=production react-scripts build",
"electron:tsc": "tsc -p electron/tsconfig.json",
"electron-dev": "npm run electron:tsc && concurrently \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:3000 && cross-env NODE_ENV=development electron .\"",
"electron-build": "cross-env NODE_ENV=production npm run build:react && npm run electron:tsc && electron-builder",
"electron-pack": "cross-env NODE_ENV=production electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.screensense.ai",
"productName": "ScreenSense AI",
"files": [
"build/**/*",
"electron/**/*",
"package.json",
"public/icons/*",
"node_modules"
],
"directories": {
"buildResources": "public",
"output": "dist"
},
"extraMetadata": {
"main": "./build/electron/main.js"
},
"asar": true,
"asarUnpack": [
"build/**/*"
],
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "electron/entitlements.mac.plist",
"entitlementsInherit": "electron/entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "We need access to your microphone for audio capture functionality.",
"NSCameraUsageDescription": "We need access to your camera for video capture functionality.",
"NSAppleEventsUsageDescription": "We need to control system events for keyboard shortcuts and automation.",
"NSScreenCaptureUsageDescription": "We need screen recording access to capture your screen for AI assistance."
},
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
],
"identity": "G-DEV FZ-LLC (KRY77A2RML)",
"forceCodeSigning": true
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
"icon": "./public/icons/icon.ico"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"category": "Development",
"icon": "./public/icons/icon.png"
},
"afterSign": "electron-builder-notarize",
"extraResources": [
{
"from": ".env",
"to": ".env"
}
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@google/generative-ai": "^0.21.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.17.13",
"@types/node": "^16.18.123",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"electron": "^33.3.1",
"electron-builder": "^25.1.8",
"electron-builder-notarize": "^1.5.2",
"ts-node": "^10.9.2",
"typescript": "5.1.6",
"wait-on": "^8.0.1"
},
"overrides": {
"typescript": "5.1.6"
}
}