-
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.44 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.44 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": "universal-to-codeberg-migrator",
"version": "1.0.0",
"description": "A tool to migrate repositories from GitHub or GitLab to Codeberg",
"main": "dist/migrate-universal-to-codeberg.js",
"module": "migrate-universal-to-codeberg.ts",
"scripts": {
"build": "tsc",
"start": "node dist/migrate-universal-to-codeberg.js",
"dev": "bun run migrate-universal-to-codeberg.ts",
"migrate": "bun run migrate-universal-to-codeberg.ts",
"migrate:github": "bun run migrate-universal-to-codeberg.ts --source github",
"migrate:gitlab": "bun run migrate-universal-to-codeberg.ts --source gitlab",
"migrate:github:delete": "bun run migrate-universal-to-codeberg.ts --source github --delete-source",
"migrate:gitlab:delete": "bun run migrate-universal-to-codeberg.ts --source gitlab --delete-source",
"migrate:bun": "bun run migrate-universal-to-codeberg.ts",
"migrate:bun:github": "bun run migrate-universal-to-codeberg.ts --source github",
"migrate:bun:gitlab": "bun run migrate-universal-to-codeberg.ts --source gitlab",
"dev:bun": "bun run --hot migrate-universal-to-codeberg.ts"
},
"keywords": [
"github",
"gitlab",
"codeberg",
"migration",
"repository",
"backup"
],
"author": "Anindra",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.11.17",
"typescript": "^5.3.3",
"ts-node": "^10.9.2"
},
"type": "module"
}