@bsb/registry 1.1.7 → 9.6.14
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 +4 -2
- package/bsb-plugin.json +8 -2
- package/lib/.bsb/clients/service-bsb-registry.d.ts +301 -282
- package/lib/.bsb/clients/service-bsb-registry.d.ts.map +1 -1
- package/lib/.bsb/clients/service-bsb-registry.js +71 -10
- package/lib/.bsb/clients/service-bsb-registry.js.map +1 -1
- package/lib/plugins/service-bsb-registry/index.d.ts +10 -10
- package/lib/plugins/service-bsb-registry/index.d.ts.map +1 -1
- package/lib/plugins/service-bsb-registry/index.js +7 -7
- package/lib/plugins/service-bsb-registry/index.js.map +1 -1
- package/lib/plugins/service-bsb-registry/types.d.ts +158 -158
- package/lib/plugins/service-bsb-registry/types.d.ts.map +1 -1
- package/lib/plugins/service-bsb-registry-ui/BADGES.json +22 -0
- package/lib/plugins/service-bsb-registry-ui/http-server.d.ts +4 -2
- package/lib/plugins/service-bsb-registry-ui/http-server.d.ts.map +1 -1
- package/lib/plugins/service-bsb-registry-ui/http-server.js +160 -102
- package/lib/plugins/service-bsb-registry-ui/http-server.js.map +1 -1
- package/lib/plugins/service-bsb-registry-ui/index.d.ts +16 -16
- package/lib/plugins/service-bsb-registry-ui/index.d.ts.map +1 -1
- package/lib/plugins/service-bsb-registry-ui/index.js +8 -8
- package/lib/plugins/service-bsb-registry-ui/index.js.map +1 -1
- package/lib/plugins/service-bsb-registry-ui/templates/partials/plugin-card.hbs +1 -1
- package/lib/schemas/service-bsb-registry-ui.json +49 -37
- package/lib/schemas/service-bsb-registry-ui.plugin.json +49 -37
- package/lib/schemas/service-bsb-registry.json +58 -44
- package/lib/schemas/service-bsb-registry.plugin.json +40 -26
- package/package.json +16 -8
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "service-bsb-registry-ui",
|
|
3
3
|
"name": "BSB Registry UI & API",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "9.6.14",
|
|
5
5
|
"description": "Web UI and REST API for browsing, searching, and publishing BSB plugins (content negotiation: HTML or JSON)",
|
|
6
6
|
"category": "service",
|
|
7
7
|
"tags": [
|
|
@@ -33,61 +33,73 @@
|
|
|
33
33
|
"image": "../../../docs/public/assets/images/bsb-logo.png",
|
|
34
34
|
"configSchema": {
|
|
35
35
|
"anyvaliVersion": "1.0",
|
|
36
|
-
"schemaVersion": "1",
|
|
36
|
+
"schemaVersion": "1.1",
|
|
37
37
|
"root": {
|
|
38
38
|
"kind": "object",
|
|
39
39
|
"properties": {
|
|
40
40
|
"port": {
|
|
41
|
-
"kind": "
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
41
|
+
"kind": "int32",
|
|
42
|
+
"min": 1,
|
|
43
|
+
"max": 65535,
|
|
44
|
+
"default": 3200,
|
|
45
|
+
"metadata": {
|
|
46
|
+
"description": "HTTP port used by the registry UI and API server"
|
|
47
|
+
}
|
|
48
48
|
},
|
|
49
49
|
"host": {
|
|
50
|
-
"kind": "
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
50
|
+
"kind": "string",
|
|
51
|
+
"default": "0.0.0.0",
|
|
52
|
+
"metadata": {
|
|
53
|
+
"description": "Network host address used by the registry UI and API server"
|
|
54
|
+
}
|
|
55
55
|
},
|
|
56
56
|
"pageSize": {
|
|
57
|
-
"kind": "
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
57
|
+
"kind": "int32",
|
|
58
|
+
"min": 1,
|
|
59
|
+
"max": 100,
|
|
60
|
+
"default": 20,
|
|
61
|
+
"metadata": {
|
|
62
|
+
"description": "Default number of plugins shown per browse page"
|
|
63
|
+
}
|
|
64
64
|
},
|
|
65
65
|
"uploadDir": {
|
|
66
|
-
"kind": "
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
66
|
+
"kind": "string",
|
|
67
|
+
"default": "./.temp/registry-images",
|
|
68
|
+
"metadata": {
|
|
69
|
+
"description": "Directory used to store uploaded registry images"
|
|
70
|
+
}
|
|
71
71
|
},
|
|
72
72
|
"badgesFile": {
|
|
73
73
|
"kind": "optional",
|
|
74
74
|
"inner": {
|
|
75
|
-
"kind": "string"
|
|
75
|
+
"kind": "string",
|
|
76
|
+
"minLength": 1
|
|
76
77
|
},
|
|
77
|
-
"
|
|
78
|
+
"metadata": {
|
|
79
|
+
"description": "Optional path to the badge definition JSON file"
|
|
80
|
+
}
|
|
78
81
|
},
|
|
79
82
|
"maxImageUploadMb": {
|
|
80
|
-
"kind": "
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
83
|
+
"kind": "int32",
|
|
84
|
+
"min": 1,
|
|
85
|
+
"max": 20,
|
|
86
|
+
"default": 5,
|
|
87
|
+
"metadata": {
|
|
88
|
+
"description": "Maximum uploaded image size in megabytes"
|
|
89
|
+
}
|
|
87
90
|
}
|
|
88
91
|
},
|
|
89
|
-
"required": [
|
|
90
|
-
|
|
92
|
+
"required": [
|
|
93
|
+
"port",
|
|
94
|
+
"host",
|
|
95
|
+
"pageSize",
|
|
96
|
+
"uploadDir",
|
|
97
|
+
"maxImageUploadMb"
|
|
98
|
+
],
|
|
99
|
+
"unknownKeys": "strip",
|
|
100
|
+
"metadata": {
|
|
101
|
+
"description": "Registry UI and API plugin configuration"
|
|
102
|
+
}
|
|
91
103
|
},
|
|
92
104
|
"definitions": {},
|
|
93
105
|
"extensions": {}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"description": "Publish a new plugin or version",
|
|
8
8
|
"inputSchema": {
|
|
9
9
|
"anyvaliVersion": "1.0",
|
|
10
|
-
"schemaVersion": "1",
|
|
10
|
+
"schemaVersion": "1.1",
|
|
11
11
|
"root": {
|
|
12
12
|
"kind": "object",
|
|
13
13
|
"properties": {
|
|
@@ -333,7 +333,7 @@
|
|
|
333
333
|
},
|
|
334
334
|
"outputSchema": {
|
|
335
335
|
"anyvaliVersion": "1.0",
|
|
336
|
-
"schemaVersion": "1",
|
|
336
|
+
"schemaVersion": "1.1",
|
|
337
337
|
"root": {
|
|
338
338
|
"kind": "object",
|
|
339
339
|
"properties": {
|
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
"description": "Get plugin details by org/name",
|
|
375
375
|
"inputSchema": {
|
|
376
376
|
"anyvaliVersion": "1.0",
|
|
377
|
-
"schemaVersion": "1",
|
|
377
|
+
"schemaVersion": "1.1",
|
|
378
378
|
"root": {
|
|
379
379
|
"kind": "object",
|
|
380
380
|
"properties": {
|
|
@@ -402,7 +402,7 @@
|
|
|
402
402
|
},
|
|
403
403
|
"outputSchema": {
|
|
404
404
|
"anyvaliVersion": "1.0",
|
|
405
|
-
"schemaVersion": "1",
|
|
405
|
+
"schemaVersion": "1.1",
|
|
406
406
|
"root": {
|
|
407
407
|
"kind": "object",
|
|
408
408
|
"properties": {
|
|
@@ -803,7 +803,7 @@
|
|
|
803
803
|
"description": "List plugins with filtering",
|
|
804
804
|
"inputSchema": {
|
|
805
805
|
"anyvaliVersion": "1.0",
|
|
806
|
-
"schemaVersion": "1",
|
|
806
|
+
"schemaVersion": "1.1",
|
|
807
807
|
"root": {
|
|
808
808
|
"kind": "object",
|
|
809
809
|
"properties": {
|
|
@@ -867,7 +867,7 @@
|
|
|
867
867
|
},
|
|
868
868
|
"outputSchema": {
|
|
869
869
|
"anyvaliVersion": "1.0",
|
|
870
|
-
"schemaVersion": "1",
|
|
870
|
+
"schemaVersion": "1.1",
|
|
871
871
|
"root": {
|
|
872
872
|
"kind": "object",
|
|
873
873
|
"properties": {
|
|
@@ -1290,7 +1290,7 @@
|
|
|
1290
1290
|
"description": "Search plugins by query",
|
|
1291
1291
|
"inputSchema": {
|
|
1292
1292
|
"anyvaliVersion": "1.0",
|
|
1293
|
-
"schemaVersion": "1",
|
|
1293
|
+
"schemaVersion": "1.1",
|
|
1294
1294
|
"root": {
|
|
1295
1295
|
"kind": "object",
|
|
1296
1296
|
"properties": {
|
|
@@ -1354,7 +1354,7 @@
|
|
|
1354
1354
|
},
|
|
1355
1355
|
"outputSchema": {
|
|
1356
1356
|
"anyvaliVersion": "1.0",
|
|
1357
|
-
"schemaVersion": "1",
|
|
1357
|
+
"schemaVersion": "1.1",
|
|
1358
1358
|
"root": {
|
|
1359
1359
|
"kind": "object",
|
|
1360
1360
|
"properties": {
|
|
@@ -1776,7 +1776,7 @@
|
|
|
1776
1776
|
"description": "Delete a plugin or specific version",
|
|
1777
1777
|
"inputSchema": {
|
|
1778
1778
|
"anyvaliVersion": "1.0",
|
|
1779
|
-
"schemaVersion": "1",
|
|
1779
|
+
"schemaVersion": "1.1",
|
|
1780
1780
|
"root": {
|
|
1781
1781
|
"kind": "object",
|
|
1782
1782
|
"properties": {
|
|
@@ -1804,7 +1804,7 @@
|
|
|
1804
1804
|
},
|
|
1805
1805
|
"outputSchema": {
|
|
1806
1806
|
"anyvaliVersion": "1.0",
|
|
1807
|
-
"schemaVersion": "1",
|
|
1807
|
+
"schemaVersion": "1.1",
|
|
1808
1808
|
"root": {
|
|
1809
1809
|
"kind": "object",
|
|
1810
1810
|
"properties": {
|
|
@@ -1832,7 +1832,7 @@
|
|
|
1832
1832
|
"description": "Get all versions of a plugin",
|
|
1833
1833
|
"inputSchema": {
|
|
1834
1834
|
"anyvaliVersion": "1.0",
|
|
1835
|
-
"schemaVersion": "1",
|
|
1835
|
+
"schemaVersion": "1.1",
|
|
1836
1836
|
"root": {
|
|
1837
1837
|
"kind": "object",
|
|
1838
1838
|
"properties": {
|
|
@@ -1860,7 +1860,7 @@
|
|
|
1860
1860
|
},
|
|
1861
1861
|
"outputSchema": {
|
|
1862
1862
|
"anyvaliVersion": "1.0",
|
|
1863
|
-
"schemaVersion": "1",
|
|
1863
|
+
"schemaVersion": "1.1",
|
|
1864
1864
|
"root": {
|
|
1865
1865
|
"kind": "object",
|
|
1866
1866
|
"properties": {
|
|
@@ -1916,7 +1916,7 @@
|
|
|
1916
1916
|
"description": "Get registry statistics",
|
|
1917
1917
|
"inputSchema": {
|
|
1918
1918
|
"anyvaliVersion": "1.0",
|
|
1919
|
-
"schemaVersion": "1",
|
|
1919
|
+
"schemaVersion": "1.1",
|
|
1920
1920
|
"root": {
|
|
1921
1921
|
"kind": "object",
|
|
1922
1922
|
"properties": {},
|
|
@@ -1928,7 +1928,7 @@
|
|
|
1928
1928
|
},
|
|
1929
1929
|
"outputSchema": {
|
|
1930
1930
|
"anyvaliVersion": "1.0",
|
|
1931
|
-
"schemaVersion": "1",
|
|
1931
|
+
"schemaVersion": "1.1",
|
|
1932
1932
|
"root": {
|
|
1933
1933
|
"kind": "object",
|
|
1934
1934
|
"properties": {
|
|
@@ -1969,7 +1969,7 @@
|
|
|
1969
1969
|
"description": "Authenticate user and get token",
|
|
1970
1970
|
"inputSchema": {
|
|
1971
1971
|
"anyvaliVersion": "1.0",
|
|
1972
|
-
"schemaVersion": "1",
|
|
1972
|
+
"schemaVersion": "1.1",
|
|
1973
1973
|
"root": {
|
|
1974
1974
|
"kind": "object",
|
|
1975
1975
|
"properties": {
|
|
@@ -1991,7 +1991,7 @@
|
|
|
1991
1991
|
},
|
|
1992
1992
|
"outputSchema": {
|
|
1993
1993
|
"anyvaliVersion": "1.0",
|
|
1994
|
-
"schemaVersion": "1",
|
|
1994
|
+
"schemaVersion": "1.1",
|
|
1995
1995
|
"root": {
|
|
1996
1996
|
"kind": "object",
|
|
1997
1997
|
"properties": {
|
|
@@ -2033,7 +2033,7 @@
|
|
|
2033
2033
|
"description": "Verify authentication token",
|
|
2034
2034
|
"inputSchema": {
|
|
2035
2035
|
"anyvaliVersion": "1.0",
|
|
2036
|
-
"schemaVersion": "1",
|
|
2036
|
+
"schemaVersion": "1.1",
|
|
2037
2037
|
"root": {
|
|
2038
2038
|
"kind": "object",
|
|
2039
2039
|
"properties": {
|
|
@@ -2051,7 +2051,7 @@
|
|
|
2051
2051
|
},
|
|
2052
2052
|
"outputSchema": {
|
|
2053
2053
|
"anyvaliVersion": "1.0",
|
|
2054
|
-
"schemaVersion": "1",
|
|
2054
|
+
"schemaVersion": "1.1",
|
|
2055
2055
|
"root": {
|
|
2056
2056
|
"kind": "object",
|
|
2057
2057
|
"properties": {
|
|
@@ -2084,10 +2084,10 @@
|
|
|
2084
2084
|
}
|
|
2085
2085
|
}
|
|
2086
2086
|
},
|
|
2087
|
-
"version": "
|
|
2087
|
+
"version": "9.6.14",
|
|
2088
2088
|
"configSchema": {
|
|
2089
2089
|
"anyvaliVersion": "1.0",
|
|
2090
|
-
"schemaVersion": "1",
|
|
2090
|
+
"schemaVersion": "1.1",
|
|
2091
2091
|
"root": {
|
|
2092
2092
|
"kind": "object",
|
|
2093
2093
|
"properties": {
|
|
@@ -2095,47 +2095,61 @@
|
|
|
2095
2095
|
"kind": "object",
|
|
2096
2096
|
"properties": {
|
|
2097
2097
|
"type": {
|
|
2098
|
-
"kind": "
|
|
2099
|
-
"
|
|
2100
|
-
"
|
|
2101
|
-
"
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2098
|
+
"kind": "enum",
|
|
2099
|
+
"values": [
|
|
2100
|
+
"file",
|
|
2101
|
+
"postgres"
|
|
2102
|
+
],
|
|
2103
|
+
"default": "file",
|
|
2104
|
+
"metadata": {
|
|
2105
|
+
"description": "Storage backend used by the registry database"
|
|
2106
|
+
}
|
|
2107
2107
|
},
|
|
2108
2108
|
"path": {
|
|
2109
|
-
"kind": "
|
|
2110
|
-
"
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2109
|
+
"kind": "string",
|
|
2110
|
+
"default": "./.temp/data",
|
|
2111
|
+
"metadata": {
|
|
2112
|
+
"description": "Filesystem path used by the file storage backend"
|
|
2113
|
+
}
|
|
2114
2114
|
}
|
|
2115
2115
|
},
|
|
2116
|
-
"required": [
|
|
2117
|
-
|
|
2116
|
+
"required": [
|
|
2117
|
+
"type",
|
|
2118
|
+
"path"
|
|
2119
|
+
],
|
|
2120
|
+
"unknownKeys": "strip",
|
|
2121
|
+
"metadata": {
|
|
2122
|
+
"description": "Registry database configuration"
|
|
2123
|
+
}
|
|
2118
2124
|
},
|
|
2119
2125
|
"auth": {
|
|
2120
2126
|
"kind": "object",
|
|
2121
2127
|
"properties": {
|
|
2122
2128
|
"requireAuth": {
|
|
2123
|
-
"kind": "
|
|
2124
|
-
"
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2129
|
+
"kind": "bool",
|
|
2130
|
+
"default": true,
|
|
2131
|
+
"metadata": {
|
|
2132
|
+
"description": "Whether write operations require API token authentication"
|
|
2133
|
+
}
|
|
2128
2134
|
}
|
|
2129
2135
|
},
|
|
2130
|
-
"required": [
|
|
2131
|
-
|
|
2136
|
+
"required": [
|
|
2137
|
+
"requireAuth"
|
|
2138
|
+
],
|
|
2139
|
+
"unknownKeys": "strip",
|
|
2140
|
+
"metadata": {
|
|
2141
|
+
"description": "Registry authentication configuration"
|
|
2142
|
+
}
|
|
2132
2143
|
}
|
|
2133
2144
|
},
|
|
2134
2145
|
"required": [
|
|
2135
2146
|
"database",
|
|
2136
2147
|
"auth"
|
|
2137
2148
|
],
|
|
2138
|
-
"unknownKeys": "strip"
|
|
2149
|
+
"unknownKeys": "strip",
|
|
2150
|
+
"metadata": {
|
|
2151
|
+
"description": "Configuration schema for BSB Registry core"
|
|
2152
|
+
}
|
|
2139
2153
|
},
|
|
2140
2154
|
"definitions": {},
|
|
2141
2155
|
"extensions": {}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "service-bsb-registry",
|
|
3
3
|
"name": "BSB Registry Core",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "9.6.14",
|
|
5
5
|
"description": "Event-driven plugin registry core for multi-language BSB plugin storage and discovery",
|
|
6
6
|
"category": "service",
|
|
7
7
|
"tags": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"image": "../../../docs/public/assets/images/bsb-logo.png",
|
|
28
28
|
"configSchema": {
|
|
29
29
|
"anyvaliVersion": "1.0",
|
|
30
|
-
"schemaVersion": "1",
|
|
30
|
+
"schemaVersion": "1.1",
|
|
31
31
|
"root": {
|
|
32
32
|
"kind": "object",
|
|
33
33
|
"properties": {
|
|
@@ -35,47 +35,61 @@
|
|
|
35
35
|
"kind": "object",
|
|
36
36
|
"properties": {
|
|
37
37
|
"type": {
|
|
38
|
-
"kind": "
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
38
|
+
"kind": "enum",
|
|
39
|
+
"values": [
|
|
40
|
+
"file",
|
|
41
|
+
"postgres"
|
|
42
|
+
],
|
|
43
|
+
"default": "file",
|
|
44
|
+
"metadata": {
|
|
45
|
+
"description": "Storage backend used by the registry database"
|
|
46
|
+
}
|
|
47
47
|
},
|
|
48
48
|
"path": {
|
|
49
|
-
"kind": "
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
49
|
+
"kind": "string",
|
|
50
|
+
"default": "./.temp/data",
|
|
51
|
+
"metadata": {
|
|
52
|
+
"description": "Filesystem path used by the file storage backend"
|
|
53
|
+
}
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"required": [
|
|
57
|
-
|
|
56
|
+
"required": [
|
|
57
|
+
"type",
|
|
58
|
+
"path"
|
|
59
|
+
],
|
|
60
|
+
"unknownKeys": "strip",
|
|
61
|
+
"metadata": {
|
|
62
|
+
"description": "Registry database configuration"
|
|
63
|
+
}
|
|
58
64
|
},
|
|
59
65
|
"auth": {
|
|
60
66
|
"kind": "object",
|
|
61
67
|
"properties": {
|
|
62
68
|
"requireAuth": {
|
|
63
|
-
"kind": "
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
69
|
+
"kind": "bool",
|
|
70
|
+
"default": true,
|
|
71
|
+
"metadata": {
|
|
72
|
+
"description": "Whether write operations require API token authentication"
|
|
73
|
+
}
|
|
68
74
|
}
|
|
69
75
|
},
|
|
70
|
-
"required": [
|
|
71
|
-
|
|
76
|
+
"required": [
|
|
77
|
+
"requireAuth"
|
|
78
|
+
],
|
|
79
|
+
"unknownKeys": "strip",
|
|
80
|
+
"metadata": {
|
|
81
|
+
"description": "Registry authentication configuration"
|
|
82
|
+
}
|
|
72
83
|
}
|
|
73
84
|
},
|
|
74
85
|
"required": [
|
|
75
86
|
"database",
|
|
76
87
|
"auth"
|
|
77
88
|
],
|
|
78
|
-
"unknownKeys": "strip"
|
|
89
|
+
"unknownKeys": "strip",
|
|
90
|
+
"metadata": {
|
|
91
|
+
"description": "Configuration schema for BSB Registry core"
|
|
92
|
+
}
|
|
79
93
|
},
|
|
80
94
|
"definitions": {},
|
|
81
95
|
"extensions": {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bsb/registry",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.6.14",
|
|
4
4
|
"description": "BSB Plugin Registry - Multi-language plugin discovery and publishing system",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
"bsb-plugin.json"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
+
"prebuild": "npm run generate:badges",
|
|
15
|
+
"generate:badges": "node scripts/generate-badges.cjs",
|
|
14
16
|
"build": "bsb-plugin-cli build",
|
|
15
17
|
"clean": "bsb-plugin-cli clean",
|
|
16
18
|
"start": "bsb-plugin-cli start",
|
|
@@ -35,25 +37,31 @@
|
|
|
35
37
|
"url": "https://bettercorp.dev/"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"@
|
|
39
|
-
"@fastify/cors": "^10.0.1",
|
|
40
|
+
"@fastify/cors": "^11.2.0",
|
|
40
41
|
"@fastify/multipart": "^9.4.0",
|
|
41
|
-
"@fastify/static": "^
|
|
42
|
+
"@fastify/static": "^9.1.3",
|
|
42
43
|
"@fastify/view": "^10.0.1",
|
|
44
|
+
"anyvali": "^1.0.6",
|
|
43
45
|
"fastify": "^5.2.0",
|
|
44
46
|
"handlebars": "^4.7.8",
|
|
45
47
|
"marked": "^17.0.2",
|
|
46
48
|
"sql.js": "^1.12.0"
|
|
47
49
|
},
|
|
48
50
|
"devDependencies": {
|
|
49
|
-
"@bsb/base": "^9.
|
|
51
|
+
"@bsb/base": "^9.6.14",
|
|
50
52
|
"@types/node": "^25.6.0",
|
|
51
53
|
"rimraf": "^6.0.1",
|
|
52
|
-
"
|
|
54
|
+
"tsx": "^4.22.4",
|
|
55
|
+
"typescript": "^6.0.3"
|
|
53
56
|
},
|
|
54
57
|
"peerDependencies": {
|
|
55
|
-
"@bsb/base": "^9.
|
|
58
|
+
"@bsb/base": "^9.6.14"
|
|
56
59
|
},
|
|
57
60
|
"bsb": {},
|
|
58
|
-
"homepage": "https://io.bsbcode.dev/packages/nodejs/@bsb/registry"
|
|
61
|
+
"homepage": "https://io.bsbcode.dev/packages/nodejs/@bsb/registry",
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "https://github.com/BetterCorp/better-service-base",
|
|
65
|
+
"directory": "plugins/nodejs/bsb-registry"
|
|
66
|
+
}
|
|
59
67
|
}
|