-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 992 Bytes
/
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
{
"name": "multimodal",
"version": "1.0.0",
"description": "This is a simple script that takes a video file as input, and turns it into text plus images in a form GPT-4o can understand. The response from the model is then read aloud.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.mjs",
"watch": "node build.mjs --watch",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcheng5/multimodal.git"
},
"author": "Joe Cheng <joe@posit.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcheng5/multimodal/issues"
},
"homepage": "https://github.com/jcheng5/multimodal#readme",
"dependencies": {},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/jquery": "^3.5.30",
"@types/rstudio-shiny": "https://github.com/rstudio/shiny#v1.8.1.1",
"esbuild": "^0.21.3",
"typescript": "^5.4.5"
}
}