-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.11 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
{
"name": "nodaddy",
"version": "1.0.0",
"description": "CLI tool for bulk domain transfers from GoDaddy to Cloudflare",
"type": "module",
"bin": {
"nodaddy": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"godaddy",
"cloudflare",
"domain",
"transfer",
"migration",
"dns",
"cli"
],
"author": "Alex Lutz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alexinslc/nodaddy.git"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"chalk": "^6.0.0",
"cli-table3": "^0.6.5",
"commander": "^15.0.0",
"conf": "^15.1.0",
"listr2": "^11.0.0",
"ora": "^9.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^26.2.0",
"dotenv": "^17.2.4",
"tsup": "^8.5.1",
"typescript": "^7.0.2",
"vitest": "^4.0.18"
}
}