@bsb/registry 1.1.6 → 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 +9 -9
- 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 +55 -37
- package/lib/schemas/service-bsb-registry.json +58 -44
- package/lib/schemas/service-bsb-registry.plugin.json +46 -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": [
|
|
@@ -24,64 +24,82 @@
|
|
|
24
24
|
"version": "1.0.0"
|
|
25
25
|
}
|
|
26
26
|
],
|
|
27
|
+
"author": {
|
|
28
|
+
"name": "BetterCorp (PTY) Ltd",
|
|
29
|
+
"email": "ninja@bettercorp.dev",
|
|
30
|
+
"url": "https://bettercorp.dev/"
|
|
31
|
+
},
|
|
32
|
+
"license": "(AGPL-3.0-only OR Commercial)",
|
|
27
33
|
"image": "../../../docs/public/assets/images/bsb-logo.png",
|
|
28
34
|
"configSchema": {
|
|
29
35
|
"anyvaliVersion": "1.0",
|
|
30
|
-
"schemaVersion": "1",
|
|
36
|
+
"schemaVersion": "1.1",
|
|
31
37
|
"root": {
|
|
32
38
|
"kind": "object",
|
|
33
39
|
"properties": {
|
|
34
40
|
"port": {
|
|
35
|
-
"kind": "
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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
|
+
}
|
|
42
48
|
},
|
|
43
49
|
"host": {
|
|
44
|
-
"kind": "
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
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
|
+
}
|
|
49
55
|
},
|
|
50
56
|
"pageSize": {
|
|
51
|
-
"kind": "
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
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
|
+
}
|
|
58
64
|
},
|
|
59
65
|
"uploadDir": {
|
|
60
|
-
"kind": "
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
66
|
+
"kind": "string",
|
|
67
|
+
"default": "./.temp/registry-images",
|
|
68
|
+
"metadata": {
|
|
69
|
+
"description": "Directory used to store uploaded registry images"
|
|
70
|
+
}
|
|
65
71
|
},
|
|
66
72
|
"badgesFile": {
|
|
67
73
|
"kind": "optional",
|
|
68
74
|
"inner": {
|
|
69
|
-
"kind": "string"
|
|
75
|
+
"kind": "string",
|
|
76
|
+
"minLength": 1
|
|
70
77
|
},
|
|
71
|
-
"
|
|
78
|
+
"metadata": {
|
|
79
|
+
"description": "Optional path to the badge definition JSON file"
|
|
80
|
+
}
|
|
72
81
|
},
|
|
73
82
|
"maxImageUploadMb": {
|
|
74
|
-
"kind": "
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
83
|
+
"kind": "int32",
|
|
84
|
+
"min": 1,
|
|
85
|
+
"max": 20,
|
|
86
|
+
"default": 5,
|
|
87
|
+
"metadata": {
|
|
88
|
+
"description": "Maximum uploaded image size in megabytes"
|
|
89
|
+
}
|
|
81
90
|
}
|
|
82
91
|
},
|
|
83
|
-
"required": [
|
|
84
|
-
|
|
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
|
+
}
|
|
85
103
|
},
|
|
86
104
|
"definitions": {},
|
|
87
105
|
"extensions": {}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"pluginName": "BSB Registry Core",
|
|
3
|
-
"version": "1.0.0",
|
|
4
3
|
"events": {
|
|
5
4
|
"registry.plugin.publish": {
|
|
6
5
|
"type": "returnable",
|
|
@@ -8,7 +7,7 @@
|
|
|
8
7
|
"description": "Publish a new plugin or version",
|
|
9
8
|
"inputSchema": {
|
|
10
9
|
"anyvaliVersion": "1.0",
|
|
11
|
-
"schemaVersion": "1",
|
|
10
|
+
"schemaVersion": "1.1",
|
|
12
11
|
"root": {
|
|
13
12
|
"kind": "object",
|
|
14
13
|
"properties": {
|
|
@@ -334,7 +333,7 @@
|
|
|
334
333
|
},
|
|
335
334
|
"outputSchema": {
|
|
336
335
|
"anyvaliVersion": "1.0",
|
|
337
|
-
"schemaVersion": "1",
|
|
336
|
+
"schemaVersion": "1.1",
|
|
338
337
|
"root": {
|
|
339
338
|
"kind": "object",
|
|
340
339
|
"properties": {
|
|
@@ -375,7 +374,7 @@
|
|
|
375
374
|
"description": "Get plugin details by org/name",
|
|
376
375
|
"inputSchema": {
|
|
377
376
|
"anyvaliVersion": "1.0",
|
|
378
|
-
"schemaVersion": "1",
|
|
377
|
+
"schemaVersion": "1.1",
|
|
379
378
|
"root": {
|
|
380
379
|
"kind": "object",
|
|
381
380
|
"properties": {
|
|
@@ -403,7 +402,7 @@
|
|
|
403
402
|
},
|
|
404
403
|
"outputSchema": {
|
|
405
404
|
"anyvaliVersion": "1.0",
|
|
406
|
-
"schemaVersion": "1",
|
|
405
|
+
"schemaVersion": "1.1",
|
|
407
406
|
"root": {
|
|
408
407
|
"kind": "object",
|
|
409
408
|
"properties": {
|
|
@@ -804,7 +803,7 @@
|
|
|
804
803
|
"description": "List plugins with filtering",
|
|
805
804
|
"inputSchema": {
|
|
806
805
|
"anyvaliVersion": "1.0",
|
|
807
|
-
"schemaVersion": "1",
|
|
806
|
+
"schemaVersion": "1.1",
|
|
808
807
|
"root": {
|
|
809
808
|
"kind": "object",
|
|
810
809
|
"properties": {
|
|
@@ -868,7 +867,7 @@
|
|
|
868
867
|
},
|
|
869
868
|
"outputSchema": {
|
|
870
869
|
"anyvaliVersion": "1.0",
|
|
871
|
-
"schemaVersion": "1",
|
|
870
|
+
"schemaVersion": "1.1",
|
|
872
871
|
"root": {
|
|
873
872
|
"kind": "object",
|
|
874
873
|
"properties": {
|
|
@@ -1291,7 +1290,7 @@
|
|
|
1291
1290
|
"description": "Search plugins by query",
|
|
1292
1291
|
"inputSchema": {
|
|
1293
1292
|
"anyvaliVersion": "1.0",
|
|
1294
|
-
"schemaVersion": "1",
|
|
1293
|
+
"schemaVersion": "1.1",
|
|
1295
1294
|
"root": {
|
|
1296
1295
|
"kind": "object",
|
|
1297
1296
|
"properties": {
|
|
@@ -1355,7 +1354,7 @@
|
|
|
1355
1354
|
},
|
|
1356
1355
|
"outputSchema": {
|
|
1357
1356
|
"anyvaliVersion": "1.0",
|
|
1358
|
-
"schemaVersion": "1",
|
|
1357
|
+
"schemaVersion": "1.1",
|
|
1359
1358
|
"root": {
|
|
1360
1359
|
"kind": "object",
|
|
1361
1360
|
"properties": {
|
|
@@ -1777,7 +1776,7 @@
|
|
|
1777
1776
|
"description": "Delete a plugin or specific version",
|
|
1778
1777
|
"inputSchema": {
|
|
1779
1778
|
"anyvaliVersion": "1.0",
|
|
1780
|
-
"schemaVersion": "1",
|
|
1779
|
+
"schemaVersion": "1.1",
|
|
1781
1780
|
"root": {
|
|
1782
1781
|
"kind": "object",
|
|
1783
1782
|
"properties": {
|
|
@@ -1805,7 +1804,7 @@
|
|
|
1805
1804
|
},
|
|
1806
1805
|
"outputSchema": {
|
|
1807
1806
|
"anyvaliVersion": "1.0",
|
|
1808
|
-
"schemaVersion": "1",
|
|
1807
|
+
"schemaVersion": "1.1",
|
|
1809
1808
|
"root": {
|
|
1810
1809
|
"kind": "object",
|
|
1811
1810
|
"properties": {
|
|
@@ -1833,7 +1832,7 @@
|
|
|
1833
1832
|
"description": "Get all versions of a plugin",
|
|
1834
1833
|
"inputSchema": {
|
|
1835
1834
|
"anyvaliVersion": "1.0",
|
|
1836
|
-
"schemaVersion": "1",
|
|
1835
|
+
"schemaVersion": "1.1",
|
|
1837
1836
|
"root": {
|
|
1838
1837
|
"kind": "object",
|
|
1839
1838
|
"properties": {
|
|
@@ -1861,7 +1860,7 @@
|
|
|
1861
1860
|
},
|
|
1862
1861
|
"outputSchema": {
|
|
1863
1862
|
"anyvaliVersion": "1.0",
|
|
1864
|
-
"schemaVersion": "1",
|
|
1863
|
+
"schemaVersion": "1.1",
|
|
1865
1864
|
"root": {
|
|
1866
1865
|
"kind": "object",
|
|
1867
1866
|
"properties": {
|
|
@@ -1917,7 +1916,7 @@
|
|
|
1917
1916
|
"description": "Get registry statistics",
|
|
1918
1917
|
"inputSchema": {
|
|
1919
1918
|
"anyvaliVersion": "1.0",
|
|
1920
|
-
"schemaVersion": "1",
|
|
1919
|
+
"schemaVersion": "1.1",
|
|
1921
1920
|
"root": {
|
|
1922
1921
|
"kind": "object",
|
|
1923
1922
|
"properties": {},
|
|
@@ -1929,7 +1928,7 @@
|
|
|
1929
1928
|
},
|
|
1930
1929
|
"outputSchema": {
|
|
1931
1930
|
"anyvaliVersion": "1.0",
|
|
1932
|
-
"schemaVersion": "1",
|
|
1931
|
+
"schemaVersion": "1.1",
|
|
1933
1932
|
"root": {
|
|
1934
1933
|
"kind": "object",
|
|
1935
1934
|
"properties": {
|
|
@@ -1970,7 +1969,7 @@
|
|
|
1970
1969
|
"description": "Authenticate user and get token",
|
|
1971
1970
|
"inputSchema": {
|
|
1972
1971
|
"anyvaliVersion": "1.0",
|
|
1973
|
-
"schemaVersion": "1",
|
|
1972
|
+
"schemaVersion": "1.1",
|
|
1974
1973
|
"root": {
|
|
1975
1974
|
"kind": "object",
|
|
1976
1975
|
"properties": {
|
|
@@ -1992,7 +1991,7 @@
|
|
|
1992
1991
|
},
|
|
1993
1992
|
"outputSchema": {
|
|
1994
1993
|
"anyvaliVersion": "1.0",
|
|
1995
|
-
"schemaVersion": "1",
|
|
1994
|
+
"schemaVersion": "1.1",
|
|
1996
1995
|
"root": {
|
|
1997
1996
|
"kind": "object",
|
|
1998
1997
|
"properties": {
|
|
@@ -2034,7 +2033,7 @@
|
|
|
2034
2033
|
"description": "Verify authentication token",
|
|
2035
2034
|
"inputSchema": {
|
|
2036
2035
|
"anyvaliVersion": "1.0",
|
|
2037
|
-
"schemaVersion": "1",
|
|
2036
|
+
"schemaVersion": "1.1",
|
|
2038
2037
|
"root": {
|
|
2039
2038
|
"kind": "object",
|
|
2040
2039
|
"properties": {
|
|
@@ -2052,7 +2051,7 @@
|
|
|
2052
2051
|
},
|
|
2053
2052
|
"outputSchema": {
|
|
2054
2053
|
"anyvaliVersion": "1.0",
|
|
2055
|
-
"schemaVersion": "1",
|
|
2054
|
+
"schemaVersion": "1.1",
|
|
2056
2055
|
"root": {
|
|
2057
2056
|
"kind": "object",
|
|
2058
2057
|
"properties": {
|
|
@@ -2085,9 +2084,10 @@
|
|
|
2085
2084
|
}
|
|
2086
2085
|
}
|
|
2087
2086
|
},
|
|
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": [
|
|
@@ -18,10 +18,16 @@
|
|
|
18
18
|
"./docs/bsb-registry-db-file.md"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": [],
|
|
21
|
+
"author": {
|
|
22
|
+
"name": "BetterCorp (PTY) Ltd",
|
|
23
|
+
"email": "ninja@bettercorp.dev",
|
|
24
|
+
"url": "https://bettercorp.dev/"
|
|
25
|
+
},
|
|
26
|
+
"license": "(AGPL-3.0-only OR Commercial)",
|
|
21
27
|
"image": "../../../docs/public/assets/images/bsb-logo.png",
|
|
22
28
|
"configSchema": {
|
|
23
29
|
"anyvaliVersion": "1.0",
|
|
24
|
-
"schemaVersion": "1",
|
|
30
|
+
"schemaVersion": "1.1",
|
|
25
31
|
"root": {
|
|
26
32
|
"kind": "object",
|
|
27
33
|
"properties": {
|
|
@@ -29,47 +35,61 @@
|
|
|
29
35
|
"kind": "object",
|
|
30
36
|
"properties": {
|
|
31
37
|
"type": {
|
|
32
|
-
"kind": "
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
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
|
+
}
|
|
41
47
|
},
|
|
42
48
|
"path": {
|
|
43
|
-
"kind": "
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
49
|
+
"kind": "string",
|
|
50
|
+
"default": "./.temp/data",
|
|
51
|
+
"metadata": {
|
|
52
|
+
"description": "Filesystem path used by the file storage backend"
|
|
53
|
+
}
|
|
48
54
|
}
|
|
49
55
|
},
|
|
50
|
-
"required": [
|
|
51
|
-
|
|
56
|
+
"required": [
|
|
57
|
+
"type",
|
|
58
|
+
"path"
|
|
59
|
+
],
|
|
60
|
+
"unknownKeys": "strip",
|
|
61
|
+
"metadata": {
|
|
62
|
+
"description": "Registry database configuration"
|
|
63
|
+
}
|
|
52
64
|
},
|
|
53
65
|
"auth": {
|
|
54
66
|
"kind": "object",
|
|
55
67
|
"properties": {
|
|
56
68
|
"requireAuth": {
|
|
57
|
-
"kind": "
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
69
|
+
"kind": "bool",
|
|
70
|
+
"default": true,
|
|
71
|
+
"metadata": {
|
|
72
|
+
"description": "Whether write operations require API token authentication"
|
|
73
|
+
}
|
|
62
74
|
}
|
|
63
75
|
},
|
|
64
|
-
"required": [
|
|
65
|
-
|
|
76
|
+
"required": [
|
|
77
|
+
"requireAuth"
|
|
78
|
+
],
|
|
79
|
+
"unknownKeys": "strip",
|
|
80
|
+
"metadata": {
|
|
81
|
+
"description": "Registry authentication configuration"
|
|
82
|
+
}
|
|
66
83
|
}
|
|
67
84
|
},
|
|
68
85
|
"required": [
|
|
69
86
|
"database",
|
|
70
87
|
"auth"
|
|
71
88
|
],
|
|
72
|
-
"unknownKeys": "strip"
|
|
89
|
+
"unknownKeys": "strip",
|
|
90
|
+
"metadata": {
|
|
91
|
+
"description": "Configuration schema for BSB Registry core"
|
|
92
|
+
}
|
|
73
93
|
},
|
|
74
94
|
"definitions": {},
|
|
75
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
|
}
|