porkbun-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +225 -0
- package/dist/cli.js +1418 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "porkbun-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "CLI for Porkbun — manage domains, DNS, SSL and more from the terminal",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "yabbal",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/yabbal/porkbun.git",
|
|
11
|
+
"directory": "packages/porkbun-cli"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/yabbal/porkbun",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/yabbal/porkbun/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"porkbun",
|
|
19
|
+
"cli",
|
|
20
|
+
"domain",
|
|
21
|
+
"dns",
|
|
22
|
+
"ssl",
|
|
23
|
+
"registrar",
|
|
24
|
+
"nameserver",
|
|
25
|
+
"dnssec"
|
|
26
|
+
],
|
|
27
|
+
"bin": {
|
|
28
|
+
"porkbun": "./dist/cli.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsup",
|
|
38
|
+
"dev": "tsup --watch",
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"lint": "biome check src/",
|
|
41
|
+
"format": "biome format --write src/"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"citty": "^0.2.1",
|
|
45
|
+
"cli-table3": "^0.6.5",
|
|
46
|
+
"consola": "^3.4.2",
|
|
47
|
+
"dotenv": "^17.3.1",
|
|
48
|
+
"porkbun-sdk": "workspace:*"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@biomejs/biome": "^2.0.6",
|
|
52
|
+
"@types/node": "^22.15.0",
|
|
53
|
+
"tsup": "^8.5.0",
|
|
54
|
+
"typescript": "^5.8.3"
|
|
55
|
+
}
|
|
56
|
+
}
|