@blocklet/meta 1.16.46 → 1.16.47-beta-20250710-073736-01b9c1bc
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/lib/schema.js +1 -1
- package/lib/types/schema.d.ts +1 -1
- package/package.json +6 -6
package/lib/schema.js
CHANGED
|
@@ -323,7 +323,7 @@ const engineSchema = Joi.object({
|
|
|
323
323
|
platform: Joi.string()
|
|
324
324
|
.valid(...constant_2.BLOCKLET_PLATFORMS)
|
|
325
325
|
.optional(),
|
|
326
|
-
interpreter: Joi.string().valid('binary', 'node', 'blocklet').default('node'),
|
|
326
|
+
interpreter: Joi.string().valid('binary', 'node', 'blocklet', 'bun').default('node'),
|
|
327
327
|
source: engineSourceSchema,
|
|
328
328
|
args: Joi.array().items(Joi.string()).optional().default([]),
|
|
329
329
|
}).meta({
|
package/lib/types/schema.d.ts
CHANGED
|
@@ -159,7 +159,7 @@ export interface TEndpoint {
|
|
|
159
159
|
}
|
|
160
160
|
export interface TEngine {
|
|
161
161
|
args?: string[];
|
|
162
|
-
interpreter?: 'binary' | 'node' | 'blocklet';
|
|
162
|
+
interpreter?: 'binary' | 'node' | 'blocklet' | 'bun';
|
|
163
163
|
platform?: 'aix' | 'darwin' | 'freebsd' | 'linux' | 'openbsd' | 'sunos' | 'win32';
|
|
164
164
|
source?: string | ({
|
|
165
165
|
name: TBlockletName;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.47-beta-20250710-073736-01b9c1bc",
|
|
7
7
|
"description": "Library to parse/validate/fix blocklet meta",
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"typings": "./lib/index.d.ts",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"author": "wangshijun <wangshijun2020@gmail.com> (http://github.com/wangshijun)",
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@abtnode/constant": "1.16.
|
|
29
|
-
"@abtnode/db-cache": "1.16.
|
|
30
|
-
"@abtnode/docker-utils": "1.16.
|
|
28
|
+
"@abtnode/constant": "1.16.47-beta-20250710-073736-01b9c1bc",
|
|
29
|
+
"@abtnode/db-cache": "1.16.47-beta-20250710-073736-01b9c1bc",
|
|
30
|
+
"@abtnode/docker-utils": "1.16.47-beta-20250710-073736-01b9c1bc",
|
|
31
31
|
"@arcblock/did": "1.20.15",
|
|
32
32
|
"@arcblock/did-ext": "1.20.15",
|
|
33
33
|
"@arcblock/did-util": "1.20.15",
|
|
34
34
|
"@arcblock/jwt": "1.20.15",
|
|
35
|
-
"@blocklet/constant": "1.16.
|
|
35
|
+
"@blocklet/constant": "1.16.47-beta-20250710-073736-01b9c1bc",
|
|
36
36
|
"@ocap/asset": "1.20.15",
|
|
37
37
|
"@ocap/mcrypto": "1.20.15",
|
|
38
38
|
"@ocap/types": "1.20.15",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"ts-node": "^10.9.1",
|
|
83
83
|
"typescript": "^5.6.3"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "c43b4f2244b11ad072f32784adf35c435d29c3ca"
|
|
86
86
|
}
|