-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
34 lines (34 loc) · 936 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
31
32
33
34
{
"name": "voyager",
"version": "0.1.0",
"type": "module",
"description": "OpenAI like APIs",
"main": "index.js",
"scripts": {
"start": "node --disable-warning=ExperimentalWarning index.js",
"dev": "nodemon --disable-warning=ExperimentalWarning index.js --ignore files",
"lint": "npx eslint .",
"build": "npm install && node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-import-attributes": "^7.24.7",
"@eslint/js": "^9.8.0",
"@lancedb/lancedb": "^0.8.0",
"apache-arrow": "^17.0.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint": "^9.8.0",
"express": "^4.19.2",
"globals": "^15.8.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.7",
"prom-client": "12",
"swagger-stats": "^0.99.7",
"swagger-ui-express": "^5.0.1"
}
}