-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "liveweb",
"version": "1.0.0",
"description": "AI-powered web builder using voice commands and Google Gemini 3 Flash. Build complete web applications by speaking naturally.",
"type": "module",
"main": "server.js",
"author": "LiveWeb Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brandonqr/liveweb.git"
},
"bugs": {
"url": "https://github.com/brandonqr/liveweb/issues"
},
"homepage": "https://github.com/brandonqr/liveweb#readme",
"keywords": [
"ai",
"gemini",
"gemini-3-flash",
"voice-recognition",
"web-builder",
"code-generation",
"react",
"nodejs",
"express",
"vite",
"speech-recognition",
"ai-assistant",
"web-development"
],
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"lint": "echo 'No linter configured for backend'",
"test": "echo 'No tests configured yet'",
"build": "cd frontend && npm ci && npm run build"
},
"dependencies": {
"@google/genai": "^1.0.0",
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1"
}
}