@blocklet/meta 1.16.46 → 1.16.47-beta-20250710-123505-c50a3bdc

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 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({
@@ -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.46",
6
+ "version": "1.16.47-beta-20250710-123505-c50a3bdc",
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.46",
29
- "@abtnode/db-cache": "1.16.46",
30
- "@abtnode/docker-utils": "1.16.46",
28
+ "@abtnode/constant": "1.16.47-beta-20250710-123505-c50a3bdc",
29
+ "@abtnode/db-cache": "1.16.47-beta-20250710-123505-c50a3bdc",
30
+ "@abtnode/docker-utils": "1.16.47-beta-20250710-123505-c50a3bdc",
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.46",
35
+ "@blocklet/constant": "1.16.47-beta-20250710-123505-c50a3bdc",
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": "7539a231d36a17026dc7066b1d79e1e026337beb"
85
+ "gitHead": "91504e15ebe43ae5f2c12e6090783412d10e320d"
86
86
  }