@chez14/rdap-sdk 0.1.1-9 → 0.2.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/package.json +29 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chez14/rdap-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "A TypeScript SDK for RDAP.net. Directly calls RDAP APIs from RDAP.net as the main RDAP Server Database.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,14 +17,6 @@
|
|
|
17
17
|
},
|
|
18
18
|
"./ts/*": "./src/*"
|
|
19
19
|
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsup",
|
|
22
|
-
"test": "vitest --no-watch",
|
|
23
|
-
"test:watch": "vitest --watch",
|
|
24
|
-
"lint": "eslint .",
|
|
25
|
-
"lint:fix": "eslint . --fix",
|
|
26
|
-
"format": "prettier --write ."
|
|
27
|
-
},
|
|
28
20
|
"keywords": [],
|
|
29
21
|
"author": "",
|
|
30
22
|
"license": "MIT",
|
|
@@ -32,23 +24,33 @@
|
|
|
32
24
|
"node": ">=16"
|
|
33
25
|
},
|
|
34
26
|
"devDependencies": {
|
|
35
|
-
"@eslint/compat": "^
|
|
36
|
-
"@eslint/eslintrc": "^3.
|
|
37
|
-
"@eslint/js": "^9.
|
|
38
|
-
"@types/node": "^
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
40
|
-
"@typescript-eslint/parser": "^8.
|
|
41
|
-
"eslint": "^9.
|
|
42
|
-
"eslint-config-prettier": "^
|
|
43
|
-
"eslint-plugin-import": "^2.
|
|
44
|
-
"eslint-plugin-prettier": "^5.
|
|
27
|
+
"@eslint/compat": "^2.0.0",
|
|
28
|
+
"@eslint/eslintrc": "^3.3.3",
|
|
29
|
+
"@eslint/js": "^9.39.2",
|
|
30
|
+
"@types/node": "^25.0.3",
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
32
|
+
"@typescript-eslint/parser": "^8.51.0",
|
|
33
|
+
"eslint": "^9.39.2",
|
|
34
|
+
"eslint-config-prettier": "^10.1.8",
|
|
35
|
+
"eslint-plugin-import": "^2.32.0",
|
|
36
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
45
37
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
46
|
-
"globals": "^
|
|
47
|
-
"prettier": "^3.4
|
|
48
|
-
"tsup": "^8.
|
|
49
|
-
"typescript": "^5.
|
|
50
|
-
"vitest": "^
|
|
38
|
+
"globals": "^17.0.0",
|
|
39
|
+
"prettier": "^3.7.4",
|
|
40
|
+
"tsup": "^8.5.1",
|
|
41
|
+
"typescript": "^5.9.3",
|
|
42
|
+
"vitest": "^4.0.16"
|
|
51
43
|
},
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"provenance": true,
|
|
46
|
+
"access": "public"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsup",
|
|
50
|
+
"test": "vitest --no-watch",
|
|
51
|
+
"test:watch": "vitest --watch",
|
|
52
|
+
"lint": "eslint .",
|
|
53
|
+
"lint:fix": "eslint . --fix",
|
|
54
|
+
"format": "prettier --write ."
|
|
55
|
+
}
|
|
56
|
+
}
|