porkbun-cli 1.0.0 → 1.0.1
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/LICENSE +21 -0
- package/dist/cli.js +2 -2
- package/package.json +58 -55
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 yabbal
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/cli.js
CHANGED
|
@@ -1394,7 +1394,7 @@ import { defineCommand as defineCommand7 } from "citty";
|
|
|
1394
1394
|
var version = defineCommand7({
|
|
1395
1395
|
meta: { name: "version", description: "Show CLI version" },
|
|
1396
1396
|
run() {
|
|
1397
|
-
console.log("1.0.
|
|
1397
|
+
console.log("1.0.1");
|
|
1398
1398
|
}
|
|
1399
1399
|
});
|
|
1400
1400
|
|
|
@@ -1402,7 +1402,7 @@ var version = defineCommand7({
|
|
|
1402
1402
|
var main = defineCommand8({
|
|
1403
1403
|
meta: {
|
|
1404
1404
|
name: "porkbun",
|
|
1405
|
-
version: "1.0.
|
|
1405
|
+
version: "1.0.1",
|
|
1406
1406
|
description: "Porkbun CLI \u2014 manage domains, DNS, SSL and more"
|
|
1407
1407
|
},
|
|
1408
1408
|
subCommands: {
|
package/package.json
CHANGED
|
@@ -1,56 +1,59 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "porkbun-cli",
|
|
3
|
+
"version": "1.0.1",
|
|
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
|
+
"dependencies": {
|
|
37
|
+
"citty": "^0.2.1",
|
|
38
|
+
"cli-table3": "^0.6.5",
|
|
39
|
+
"consola": "^3.4.2",
|
|
40
|
+
"dotenv": "^17.3.1",
|
|
41
|
+
"porkbun-sdk": "1.0.1"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@biomejs/biome": "^2.0.6",
|
|
45
|
+
"@types/node": "^25.5.0",
|
|
46
|
+
"@vitest/coverage-v8": "^4.1.0",
|
|
47
|
+
"tsup": "^8.5.0",
|
|
48
|
+
"typescript": "^5.8.3",
|
|
49
|
+
"vitest": "^4.1.0"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsup",
|
|
53
|
+
"dev": "tsup --watch",
|
|
54
|
+
"typecheck": "tsc --noEmit",
|
|
55
|
+
"lint": "biome check src/",
|
|
56
|
+
"format": "biome format --write src/",
|
|
57
|
+
"test": "vitest run"
|
|
58
|
+
}
|
|
59
|
+
}
|