@push.rocks/smartregistry 2.6.0 → 2.8.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/.smartconfig.json +24 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/cargo/classes.cargoregistry.d.ts +8 -3
- package/dist_ts/cargo/classes.cargoregistry.js +71 -33
- package/dist_ts/classes.smartregistry.js +48 -36
- package/dist_ts/composer/classes.composerregistry.d.ts +14 -3
- package/dist_ts/composer/classes.composerregistry.js +64 -28
- package/dist_ts/core/classes.registrystorage.d.ts +45 -0
- package/dist_ts/core/classes.registrystorage.js +116 -1
- package/dist_ts/core/helpers.stream.d.ts +20 -0
- package/dist_ts/core/helpers.stream.js +59 -0
- package/dist_ts/core/index.d.ts +1 -0
- package/dist_ts/core/index.js +3 -1
- package/dist_ts/core/interfaces.core.d.ts +28 -5
- package/dist_ts/maven/classes.mavenregistry.d.ts +14 -3
- package/dist_ts/maven/classes.mavenregistry.js +78 -27
- package/dist_ts/npm/classes.npmregistry.d.ts +14 -3
- package/dist_ts/npm/classes.npmregistry.js +121 -48
- package/dist_ts/oci/classes.ociregistry.d.ts +19 -3
- package/dist_ts/oci/classes.ociregistry.js +187 -73
- package/dist_ts/oci/classes.ociupstream.d.ts +5 -2
- package/dist_ts/oci/classes.ociupstream.js +17 -10
- package/dist_ts/oci/interfaces.oci.d.ts +4 -0
- package/dist_ts/pypi/classes.pypiregistry.d.ts +8 -3
- package/dist_ts/pypi/classes.pypiregistry.js +88 -50
- package/dist_ts/rubygems/classes.rubygemsregistry.d.ts +8 -3
- package/dist_ts/rubygems/classes.rubygemsregistry.js +61 -23
- package/dist_ts/rubygems/helpers.rubygems.js +9 -11
- package/dist_ts/upstream/classes.upstreamcache.js +2 -2
- package/dist_ts/upstream/interfaces.upstream.d.ts +72 -1
- package/dist_ts/upstream/interfaces.upstream.js +24 -1
- package/package.json +24 -20
- package/readme.md +354 -812
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/cargo/classes.cargoregistry.ts +84 -37
- package/ts/classes.smartregistry.ts +49 -35
- package/ts/composer/classes.composerregistry.ts +74 -30
- package/ts/core/classes.registrystorage.ts +133 -2
- package/ts/core/helpers.stream.ts +63 -0
- package/ts/core/index.ts +3 -0
- package/ts/core/interfaces.core.ts +29 -5
- package/ts/maven/classes.mavenregistry.ts +89 -28
- package/ts/npm/classes.npmregistry.ts +134 -49
- package/ts/oci/classes.ociregistry.ts +206 -77
- package/ts/oci/classes.ociupstream.ts +18 -8
- package/ts/oci/interfaces.oci.ts +4 -0
- package/ts/pypi/classes.pypiregistry.ts +100 -54
- package/ts/rubygems/classes.rubygemsregistry.ts +69 -24
- package/ts/rubygems/helpers.rubygems.ts +8 -10
- package/ts/upstream/classes.upstreamcache.ts +1 -1
- package/ts/upstream/interfaces.upstream.ts +82 -1
- package/npmextra.json +0 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@push.rocks/smartregistry",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A composable TypeScript library implementing OCI, NPM, Maven, Cargo, Composer, PyPI, and RubyGems registries for building unified container and package registries",
|
|
6
6
|
"main": "dist_ts/index.js",
|
|
@@ -8,14 +8,19 @@
|
|
|
8
8
|
"type": "module",
|
|
9
9
|
"author": "Task Venture Capital GmbH",
|
|
10
10
|
"license": "MIT",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "(tstest test/ --verbose --logfile --timeout 240)",
|
|
13
|
+
"build": "(tsbuild --allowimplicitany)",
|
|
14
|
+
"buildDocs": "(tsdoc)"
|
|
15
|
+
},
|
|
11
16
|
"devDependencies": {
|
|
12
|
-
"@git.zone/tsbuild": "^
|
|
13
|
-
"@git.zone/tsbundle": "^2.0
|
|
14
|
-
"@git.zone/tsrun": "^2.0.
|
|
15
|
-
"@git.zone/tstest": "^3.
|
|
16
|
-
"@push.rocks/smartarchive": "^5.
|
|
17
|
-
"@push.rocks/
|
|
18
|
-
"@types/node": "^
|
|
17
|
+
"@git.zone/tsbuild": "^4.4.0",
|
|
18
|
+
"@git.zone/tsbundle": "^2.10.0",
|
|
19
|
+
"@git.zone/tsrun": "^2.0.2",
|
|
20
|
+
"@git.zone/tstest": "^3.6.0",
|
|
21
|
+
"@push.rocks/smartarchive": "^5.2.1",
|
|
22
|
+
"@push.rocks/smartstorage": "^6.3.2",
|
|
23
|
+
"@types/node": "^25.5.0"
|
|
19
24
|
},
|
|
20
25
|
"repository": {
|
|
21
26
|
"type": "git",
|
|
@@ -34,22 +39,21 @@
|
|
|
34
39
|
"dist_ts_web/**/*",
|
|
35
40
|
"assets/**/*",
|
|
36
41
|
"cli.js",
|
|
37
|
-
"
|
|
42
|
+
".smartconfig.json",
|
|
38
43
|
"readme.md"
|
|
39
44
|
],
|
|
45
|
+
"pnpm": {
|
|
46
|
+
"overrides": {}
|
|
47
|
+
},
|
|
40
48
|
"dependencies": {
|
|
41
49
|
"@push.rocks/qenv": "^6.1.3",
|
|
42
|
-
"@push.rocks/smartbucket": "^4.
|
|
43
|
-
"@push.rocks/smartlog": "^3.1
|
|
50
|
+
"@push.rocks/smartbucket": "^4.5.1",
|
|
51
|
+
"@push.rocks/smartlog": "^3.2.1",
|
|
44
52
|
"@push.rocks/smartpath": "^6.0.0",
|
|
45
53
|
"@push.rocks/smartrequest": "^5.0.1",
|
|
46
|
-
"@tsclass/tsclass": "^9.
|
|
47
|
-
"adm-zip": "^0.5.
|
|
48
|
-
"minimatch": "^10.
|
|
54
|
+
"@tsclass/tsclass": "^9.5.0",
|
|
55
|
+
"adm-zip": "^0.5.16",
|
|
56
|
+
"minimatch": "^10.2.4"
|
|
49
57
|
},
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
"build": "(tsbuild --web --allowimplicitany)",
|
|
53
|
-
"buildDocs": "(tsdoc)"
|
|
54
|
-
}
|
|
55
|
-
}
|
|
58
|
+
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34"
|
|
59
|
+
}
|