@startanaicompany/saac_dns 1.1.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 +435 -0
- package/bin/saac_dns.js +1338 -0
- package/index.d.ts +414 -0
- package/index.js +675 -0
- package/lib/client.js +134 -0
- package/lib/namesilo.js +754 -0
- package/package.json +32 -0
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@startanaicompany/saac_dns",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Programmatic Domain Registration, DNS Management & CLI Toolkit by Start An AI Company (SAAC)",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"bin": {
|
|
8
|
+
"saac_dns": "./bin/saac_dns.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "node test/basic.js",
|
|
12
|
+
"prepublishOnly": "node --check index.js && node --check lib/client.js && node --check bin/saac_dns.js",
|
|
13
|
+
"lint": "node --check index.js && node --check lib/client.js && node --check bin/saac_dns.js"
|
|
14
|
+
},
|
|
15
|
+
"keywords": ["dns", "domain", "registration", "cli", "namesilo", "saac"],
|
|
16
|
+
"author": "Start An AI Company (SAAC)",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"commander": "^12.0.0",
|
|
20
|
+
"cli-table3": "^0.6.5"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18.0.0"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"index.js",
|
|
27
|
+
"index.d.ts",
|
|
28
|
+
"bin/",
|
|
29
|
+
"lib/",
|
|
30
|
+
"README.md"
|
|
31
|
+
]
|
|
32
|
+
}
|