-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.23 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
{
"name": "gemini-display-kit",
"version": "0.1.0",
"description": "Gemini-powered SDK + CLI for building games on Meta Ray-Ban Display. Built at the Google I/O Hackathon 2026-05-23.",
"type": "module",
"bin": {
"gemini-display-kit": "bin/gdk.mjs"
},
"exports": {
".": "./src/index.mjs",
"./tools": "./src/tools/index.mjs",
"./bridge": "./src/bridge/server.mjs",
"./display/*": "./src/display/*"
},
"files": [
"bin/",
"src/",
"templates/",
"README.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"dev": "node bin/gdk.mjs dev",
"test": "node scripts/smoke.mjs",
"scrub": "bash scripts/scrub-for-publish.sh",
"preflight": "bash scripts/demo-day.sh",
"prewarm": "node scripts/prewarm-odyssey.mjs"
},
"keywords": [
"gemini",
"managed-agents",
"meta-ray-ban-display",
"smart-glasses",
"hackathon",
"nano-banana",
"veo",
"lyria",
"antigravity"
],
"author": "Sid Kandan <siddharth.kandan@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sidkandan/GeminiDisplayKit"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@google/genai": "^2.6.0",
"qrcode": "^1.5.4"
}
}