-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "converthub-api-javascript-examples",
"version": "1.0.0",
"description": "JavaScript/Node.js examples for ConvertHub API integration",
"author": "ConvertHub",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"simple-convert": "node simple-convert/convert.js",
"chunked-upload": "node chunked-upload/upload-large-file.js",
"format-discovery": "node format-discovery/list-formats.js",
"job-status": "node job-management/check-status.js",
"job-cancel": "node job-management/cancel-job.js",
"job-delete": "node job-management/delete-file.js",
"job-download": "node job-management/download-result.js",
"url-convert": "node url-convert/convert-from-url.js",
"webhook-server": "node webhook-handler/webhook-receiver.js"
},
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"form-data": "^4.0.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/node": "^20.0.0"
},
"keywords": [
"converthub",
"api",
"file-conversion",
"nodejs",
"javascript",
"examples"
]
}