-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 KB
/
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
35
36
37
38
39
40
41
42
43
{
"name": "vlmrun",
"version": "0.2.8",
"description": "The official TypeScript library for the VlmRun API",
"author": "VlmRun <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "commonjs",
"repository": "github:vlm-run/vlmrun-node-sdk",
"license": "Apache-2.0",
"keywords": [],
"packageManager": "[email protected]",
"private": false,
"files": [
"**/*"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --config=jest.integration.config.js"
},
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"mime-types": "^2.1.35",
"path": "^0.12.7",
"tar": "^7.4.3",
"zod": "~3.24.2",
"zod-to-json-schema": "~3.24.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}