-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.65 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vimeo2bunny",
"version": "1.0.6",
"description": "CLI tool to migrate videos from Vimeo to bunny.net Stream",
"main": "dist/index.js",
"bin": {
"vimeo2bunny": "dist/index.js"
},
"files": [
"dist/",
"!dist/binaries",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:binaries": "npm run build && pkg . --out-path dist/binaries",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
},
"pkg": {
"scripts": "dist/**/*.js",
"targets": [
"node20-macos-x64",
"node20-macos-arm64",
"node20-linux-x64",
"node20-win-x64"
],
"outputPath": "dist/binaries"
},
"keywords": [
"vimeo",
"bunny",
"video",
"migration",
"cli"
],
"author": "bunny.net",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BunnyWay/vimeo2bunny.git"
},
"homepage": "https://github.com/BunnyWay/vimeo2bunny#readme",
"bugs": {
"url": "https://github.com/BunnyWay/vimeo2bunny/issues"
},
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"axios": "^1.15.2",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^11.1.0",
"conf": "^10.2.0",
"dotenv": "^16.3.1",
"ora": "^5.4.1",
"zod": "^3.22.0"
},
"optionalDependencies": {
"keytar": "^7.9.0"
},
"overrides": {
"follow-redirects": "^1.16.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/node": "^20.10.0",
"@yao-pkg/pkg": "^5.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}