@package-broker/core 0.9.0 → 0.10.2
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 +11 -0
- package/package.json +9 -9
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @package-broker/core
|
|
2
|
+
|
|
3
|
+
Core application logic for PACKAGE.broker - the platform-agnostic engine powering the Composer repository proxy.
|
|
4
|
+
|
|
5
|
+
This package contains the API routes, business logic, database schema, and port adapters that make PACKAGE.broker work across different platforms (Cloudflare Workers, Node.js, Docker).
|
|
6
|
+
|
|
7
|
+
📚 **Full documentation:** https://package.broker
|
|
8
|
+
|
|
9
|
+
## License
|
|
10
|
+
|
|
11
|
+
AGPL-3.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@package-broker/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -29,20 +29,20 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@hono/zod-openapi": "^1.2.0",
|
|
31
31
|
"@noble/hashes": "^2.0.1",
|
|
32
|
-
"@package-broker/shared": "
|
|
32
|
+
"@package-broker/shared": "^0.10.0",
|
|
33
33
|
"@types/nodemailer": "^7.0.4",
|
|
34
|
-
"aws4fetch": "^1.0.
|
|
34
|
+
"aws4fetch": "^1.0.20",
|
|
35
35
|
"drizzle-orm": "^0.45.1",
|
|
36
36
|
"fflate": "^0.8.2",
|
|
37
37
|
"hono": "^4.11.3",
|
|
38
|
-
"micromatch": "^4.0.
|
|
38
|
+
"micromatch": "^4.0.8",
|
|
39
39
|
"nanoid": "^5.1.6",
|
|
40
|
-
"nodemailer": "^7.0.
|
|
40
|
+
"nodemailer": "^7.0.12",
|
|
41
41
|
"otplib": "^12.0.1",
|
|
42
|
-
"p-retry": "^
|
|
42
|
+
"p-retry": "^7.1.1",
|
|
43
43
|
"qrcode": "^1.5.4",
|
|
44
|
-
"semver": "^7.
|
|
45
|
-
"zod": "^4.
|
|
44
|
+
"semver": "^7.7.3",
|
|
45
|
+
"zod": "^4.2.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@cloudflare/workers-types": "^4.20251230.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@types/qrcode": "^1.5.6",
|
|
51
51
|
"@types/semver": "^7.7.1",
|
|
52
52
|
"drizzle-kit": "^0.31.8",
|
|
53
|
-
"typescript": "^5.
|
|
53
|
+
"typescript": "^5.9.3"
|
|
54
54
|
},
|
|
55
55
|
"repository": {
|
|
56
56
|
"type": "git",
|