-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 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
41
42
43
44
45
46
47
{
"name": "cloudconvert-cli",
"version": "3.0.0",
"description": "Command Line Interface for the CloudConvert API v2",
"homepage": "https://github.com/cloudconvert/cloudconvert-cli",
"license": "MIT",
"author": "Josias Montag <josias@montag.info>",
"repository": {
"type": "git",
"url": "https://github.com/cloudconvert/cloudconvert-cli.git"
},
"bugs": {
"url": "https://github.com/cloudconvert/cloudconvert-cli/issues"
},
"type": "module",
"bin": {
"cloudconvert": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepack": "npm run build && npm test"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"cloudconvert": "^3.0.0",
"glob": "^13.0.6",
"log-symbols": "^7.0.1",
"ora": "^9.4.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/node": "^22.19.18",
"@types/yargs": "^17.0.35",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}