-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.62 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.62 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
{
"name": "jibo-workshop",
"version": "1.0.0",
"type": "module",
"description": "Jibo robotics workshop — from hello world to GPT pipelines",
"scripts": {
"js:01-hello": "node scripts/js/01_hello.js",
"js:02-animate": "node scripts/js/02_animate.js",
"js:03-led": "node scripts/js/03_led.js",
"js:04-sound": "node scripts/js/04_sound.js",
"js:05-stop": "node scripts/js/05_stop.js",
"js:06-state": "node scripts/js/06_state.js",
"js:07-speak-animate": "node scripts/js/07_speak_animate.js",
"js:08-chain": "node scripts/js/08_chain.js",
"js:09-led-cycle": "node scripts/js/09_led_cycle.js",
"js:10-mic": "node scripts/js/10_mic.js",
"js:11-camera": "node scripts/js/11_camera.js",
"py:01-hello": "python scripts/python/01_hello.py",
"py:02-animate": "python scripts/python/02_animate.py",
"py:03-led": "python scripts/python/03_led.py",
"py:04-sound": "python scripts/python/04_sound.py",
"py:05-stop": "python scripts/python/05_stop.py",
"py:06-state": "python scripts/python/06_state.py",
"py:07-speak-animate": "python scripts/python/07_speak_animate.py",
"py:08-chain": "python scripts/python/08_chain.py",
"py:09-led-cycle": "python scripts/python/09_led_cycle.py",
"py:10-mic": "python scripts/python/10_mic.py",
"py:11-camera": "python scripts/python/11_camera.py",
"realtime": "node pipelines/js/jibo_realtime.js",
"whisper": "node pipelines/js/jibo_whisper_gpt.js",
"vision": "node pipelines/js/jibo_vision.js"
},
"dependencies": {
"dotenv": "^16.4.5",
"openai": "^4.73.0",
"roslib": "^2.0.1",
"ws": "^8.18.0"
}
}