-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.29 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
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
{
"name": "algovortex",
"version": "0.1.0",
"private": true,
"description": "AlgoVortex - local AI coding interview practice (Electron, Ollama or Gemini)",
"author": "AlgoVortex",
"main": "electron/main.js",
"homepage": "./",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@monaco-editor/react": "^4.6.0",
"@motionone/utils": "^10.18.0",
"@phosphor-icons/react": "^2.1.10",
"@react-three/fiber": "^8.17.10",
"@react-three/postprocessing": "^2.16.3",
"@speechly/speech-recognition-polyfill": "^1.3.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/node": "^16.18.112",
"@types/react": "^18.3.16",
"@types/react-dom": "^18.3.5",
"axios": "^1.7.9",
"elevenlabs": "^0.18.0",
"framer-motion": "^12.0.0-alpha.0",
"lenis": "^1.1.18",
"leva": "^0.9.35",
"path-browserify": "^1.0.1",
"pretty-error": "^4.0.0",
"pyodide": "^0.26.4",
"react": "^18.3.1",
"react-audio-player": "^0.17.0",
"react-dom": "^18.3.1",
"react-loader-spinner": "^6.1.6",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.26.2",
"react-scripts": "5.0.1",
"react-speech-recognition": "^3.10.0",
"styled-components": "^6.1.13",
"three": "^0.169.0",
"tty-browserify": "^0.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"electron:dev": "concurrently -k \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "npm run build && electron-builder"
},
"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": {
"@types/react-speech-recognition": "^3.9.5",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"wait-on": "^8.0.1"
},
"build": {
"extends": null,
"appId": "com.algovortex.local",
"productName": "AlgoVortex",
"files": [
"build/**/*",
"electron/**/*",
"public/icons/**/*",
"!node_modules/**/*"
],
"extraMetadata": {
"main": "electron/main.js"
},
"directories": {
"buildResources": "public",
"output": "dist"
},
"mac": {
"target": "dmg",
"category": "public.app-category.developer-tools",
"icon": "public/icons/icon.icns",
"entitlements": "electron/entitlements.mac.plist",
"entitlementsInherit": "electron/entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "AlgoVortex uses your microphone for voice answers during interview practice."
}
},
"win": {
"target": "nsis",
"icon": "public/icons/icon.ico"
},
"linux": {
"target": "AppImage",
"category": "Development",
"icon": "public/icons/512x512.png"
}
}
}