@volcengine/vefaas-cli 0.2.2-win32-x64 → 0.2.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/CHANGELOG.md ADDED
@@ -0,0 +1,74 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/).
7
+
8
+ ## [0.2.2] - 2026-06-08
9
+
10
+ 0.2.2 提升函数调试、沙箱应用、OpenAPI 调用和认证体验,面向自动化脚本与 AI Agent 场景提供更稳定的结构化能力。
11
+
12
+ ### Added
13
+
14
+ - `vefaas api` 支持按 Action 自动解析 veFaaS v1、veFaaS v2 和 APIG API 版本,并允许通过 `--service`、`--api-version` 显式覆盖。
15
+ - `vefaas fn invoke` 支持 APIG 形态的请求参数和 debug instance 调用,便于在没有触发器绑定的情况下直接测试函数。
16
+ - `vefaas fn trigger apig` 和 `vefaas sandbox trigger apig` 支持绑定与编辑 APIG 路由。
17
+ - `vefaas sandbox create` 支持在创建沙箱应用时同步配置 APIG 网关路由。
18
+
19
+ ### Improved
20
+
21
+ - `vefaas login --check` 返回登录方式、凭据来源和环境信息,便于脚本判断当前认证状态。
22
+ - 当 SSO 凭据缺少 APIG 权限时,CLI 会提示使用 AK/SK 登录,并给出 AK/SK 获取入口。
23
+ - 沙箱实例启动失败时会识别冷启动超时等平台错误,并提示检查实例、日志和沙箱配置。
24
+ - veFaaS Skill 文档补充函数调用、APIG 触发器和沙箱网关路由配置说明。
25
+
26
+ ### Fixed
27
+
28
+ - 减少登录状态检查时对系统 Keychain 的重复访问。
29
+ - 修复部分 APIG 路由 Action 需要特定版本时无法直接通过 `vefaas api` 调用的问题。
30
+
31
+ ## [0.2.1] - 2026-06-08
32
+
33
+ 0.2.1 聚焦安装、部署输出和登录状态检查体验,提升 npm 发布后的使用稳定性。
34
+
35
+ ### Fixed
36
+
37
+ - 修复一键安装命令在部分环境下无法正常执行的问题。
38
+ - 修复 `vefaas login --check` 在无有效凭据时的错误提示。
39
+ - 修复 `vefaas deploy -o json` 在未完成项目关联时的非交互处理。
40
+
41
+ ### Improved
42
+
43
+ - `vefaas deploy` 会展示最终生效的构建设置,并在结构化输出中返回 settings 信息。
44
+ - 优化登录状态读取流程,减少重复凭据校验带来的干扰。
45
+ - 优化全局安装和更新流程,对已有 `vefaas` 安装更友好。
46
+ - 更新 veFaaS Skill 的安装入口。
47
+
48
+ ## [0.2.0] - 2026-06-05
49
+
50
+ 0.2.0 是 veFaaS CLI 的正式对外发布版本,重点提升命令覆盖度、结构化输出、认证稳定性和 Agent/脚本场景可用性。
51
+
52
+ ### Added
53
+
54
+ - 新增 `vefaas fn` 函数管理命令,支持函数列表、详情、创建、删除、调用、日志、实例、发布、回滚、触发器、依赖、环境变量、配置、伸缩和 WebShell 等操作。
55
+ - 新增 `vefaas sandbox` 沙箱管理命令,支持沙箱列表、创建、删除、详情、镜像查询、配置管理、WebShell 以及实例生命周期操作。
56
+ - 新增 `vefaas gateway` 网关管理命令,支持查询网关、路由、服务和 upstream。
57
+ - 新增 `vefaas api` 命令,可在 CLI 中直接调用 veFaaS OpenAPI,便于排障、自动化和临时运维。
58
+ - 新增 `vefaas doctor` 诊断命令,用于检查 CLI 版本、运行时、凭据状态、项目配置和本地环境。
59
+ - 新增 `vefaas completion` 命令,用于生成 shell 自动补全脚本。
60
+ - 新增 `--output json|yaml|table|text` 输出格式,并支持 `--fields`、`--limit` 和 `--jq`,方便脚本、CI 和 AI Agent 消费命令结果。
61
+ - 新增凭据加密存储与旧凭据迁移能力,兼容环境变量、系统凭据层、加密文件和旧版明文凭据。
62
+
63
+ ### Changed
64
+
65
+ - CLI 帮助、参数校验、全局选项和子命令行为统一调整,错误提示和非交互场景表现更一致。
66
+ - 使用说明重写,补充认证、常用命令、输出格式、环境变量和故障排查说明。
67
+
68
+ ### Improved
69
+
70
+ - 优化文本、表格、JSON 和 YAML 输出,减少命令间输出差异。
71
+ - 优化错误码和错误文案,提升 CI、脚本和 Agent 调用时的可判断性。
72
+ - 优化登录、凭据读取和本地配置读取流程,降低重复登录和凭据文件兼容问题。
73
+ - 优化函数选择、分页选择、名称校验、运行时检测和本地项目探测体验。
74
+ - 优化 OpenAPI 调用参数提示,降低直接调用 API 的使用成本。
package/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Beijing Volcano Engine Technology Co., Ltd.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,217 @@
1
+ # veFaaS CLI
2
+
3
+ veFaaS CLI 是火山引擎 veFaaS 的命令行工具,用于在终端中完成登录、项目初始化、应用部署、函数管理、沙箱管理、网关管理和 OpenAPI 调用。
4
+
5
+ 如果你在 AI Agent 中使用 veFaaS,建议同时安装 veFaaS Skill。CLI 负责真实执行命令,Skill 负责向 Agent 提供 veFaaS 的使用说明、最佳实践、部署工作流和常见排障路径。
6
+
7
+ ## 安装 CLI
8
+
9
+ 一键安装 CLI 和 veFaaS Skill:
10
+
11
+ ```bash
12
+ npx @volcengine/vefaas-cli@latest install
13
+ ```
14
+
15
+ 全局安装 CLI:
16
+
17
+ ```bash
18
+ npm i -g @volcengine/vefaas-cli@latest
19
+ ```
20
+
21
+ 或使用 pnpm:
22
+
23
+ ```bash
24
+ pnpm add -g @volcengine/vefaas-cli@latest
25
+ ```
26
+
27
+ 验证安装:
28
+
29
+ ```bash
30
+ vefaas --version
31
+ vefaas --help
32
+ ```
33
+
34
+ ## 安装 Skill
35
+
36
+ veFaaS Skill 面向 AI Agent 场景,说明比 CLI `--help` 更完整,包含:
37
+
38
+ - 什么时候使用 veFaaS CLI
39
+ - 如何部署 Web 应用和静态站点
40
+ - 如何管理函数、沙箱、环境变量和网关
41
+ - 常见错误的诊断方式
42
+ - Agent 调用 CLI 时应遵循的工作流和安全约定
43
+
44
+ 安装 veFaaS Skill:
45
+
46
+ ```bash
47
+ npx skills add vefaas-dev/skills -y -g
48
+ ```
49
+
50
+ 安装后,你可以在支持 Skill 的 Agent 中直接提出 veFaaS 相关需求,例如:
51
+
52
+ ```text
53
+ 帮我把当前项目部署到 veFaaS
54
+ 检查这个函数为什么访问失败
55
+ 把 .env 导入到已关联的函数环境变量
56
+ ```
57
+
58
+ Skill 文档:<https://www.volcengine.com/docs/6662/2222391>
59
+
60
+ ## 环境要求
61
+
62
+ - Node.js >= 18
63
+ - npm 或 pnpm
64
+ - 普通安装和使用不需要手动安装 Bun
65
+
66
+ ## 认证
67
+
68
+ 交互式登录:
69
+
70
+ ```bash
71
+ vefaas login
72
+ ```
73
+
74
+ 浏览器 SSO 登录:
75
+
76
+ ```bash
77
+ vefaas login --sso
78
+ ```
79
+
80
+ 非交互环境可以使用 AK/SK:
81
+
82
+ ```bash
83
+ vefaas login --accessKey <AK> --secretKey <SK>
84
+ ```
85
+
86
+ 也可以直接通过环境变量提供凭据:
87
+
88
+ ```bash
89
+ VOLC_ACCESS_KEY_ID=<AK> VOLC_SECRET_ACCESS_KEY=<SK> vefaas fn list
90
+ ```
91
+
92
+ 退出登录:
93
+
94
+ ```bash
95
+ vefaas logout
96
+ ```
97
+
98
+ 诊断当前环境、项目配置和凭据状态:
99
+
100
+ ```bash
101
+ vefaas doctor
102
+ vefaas doctor -o json
103
+ ```
104
+
105
+ ## 常用命令
106
+
107
+ 查看帮助:
108
+
109
+ ```bash
110
+ vefaas --help
111
+ vefaas <command> --help
112
+ ```
113
+
114
+ 初始化或关联项目:
115
+
116
+ ```bash
117
+ vefaas init
118
+ vefaas link
119
+ ```
120
+
121
+ 部署当前项目:
122
+
123
+ ```bash
124
+ vefaas deploy
125
+ ```
126
+
127
+ 函数管理:
128
+
129
+ ```bash
130
+ vefaas fn list
131
+ vefaas fn info --id <functionId>
132
+ vefaas fn invoke --id <functionId>
133
+ vefaas fn logs --id <functionId>
134
+ ```
135
+
136
+ 沙箱管理:
137
+
138
+ ```bash
139
+ vefaas sandbox list
140
+ vefaas sandbox create --help
141
+ vefaas sandbox instance list --id <sandboxId>
142
+ ```
143
+
144
+ 网关管理:
145
+
146
+ ```bash
147
+ vefaas gateway list
148
+ vefaas gateway routes --gateway-id <gatewayId>
149
+ ```
150
+
151
+ 直接调用 veFaaS OpenAPI:
152
+
153
+ ```bash
154
+ vefaas api ListFunctions --PageSize 10 -o table
155
+ ```
156
+
157
+ ## 输出格式
158
+
159
+ 默认输出为文本。可以通过 `-o` / `--output` 切换格式:
160
+
161
+ ```bash
162
+ vefaas fn list -o table
163
+ vefaas fn list -o json
164
+ vefaas fn list -o yaml
165
+ ```
166
+
167
+ JSON 输出可以配合 `--jq` 过滤:
168
+
169
+ ```bash
170
+ vefaas fn list -o json --jq '.data.functions[0].Name'
171
+ ```
172
+
173
+ 表格输出可以限制字段和行数:
174
+
175
+ ```bash
176
+ vefaas fn list -o table --fields Id,Name,Runtime --limit 10
177
+ ```
178
+
179
+ ## 环境变量
180
+
181
+ | 变量 | 说明 |
182
+ |-|-|
183
+ | `VOLC_TOKEN` | 使用 token 凭据。优先级高于 AK/SK。 |
184
+ | `VOLC_ACCESS_KEY_ID` | 火山引擎 Access Key ID。 |
185
+ | `VOLC_SECRET_ACCESS_KEY` | 火山引擎 Secret Access Key。 |
186
+ | `VOLC_SESSION_TOKEN` | 可选 STS session token,需要和 AK/SK 一起使用。 |
187
+ | `VEFAAS_DISABLE_KEYCHAIN=1` | 禁用系统凭据存储,改用本地加密文件 fallback。 |
188
+ | `VEFAAS_HOME=<dir>` | 覆盖 CLI 用户配置根目录,凭据和用户配置位于 `$VEFAAS_HOME/.vefaas/`。 |
189
+ | `NO_UPDATE_NOTIFIER=1` | 关闭版本更新提示。 |
190
+ | `VEFAAS_NO_UPDATE_NOTIFIER=1` | 同样用于关闭版本更新提示。 |
191
+ | `NO_COLOR=1` | 禁用彩色输出。 |
192
+
193
+ 示例:
194
+
195
+ ```bash
196
+ NO_UPDATE_NOTIFIER=1 vefaas --help
197
+ VEFAAS_DISABLE_KEYCHAIN=1 vefaas login --accessKey <AK> --secretKey <SK>
198
+ VEFAAS_HOME="$(mktemp -d)" vefaas doctor -o json
199
+ ```
200
+
201
+ ## 故障排查
202
+
203
+ 查看 CLI、运行时、凭据和项目配置状态:
204
+
205
+ ```bash
206
+ vefaas doctor
207
+ ```
208
+
209
+ ## 更新日志
210
+
211
+ 版本更新内容请查看 [CHANGELOG.md](./CHANGELOG.md)。
212
+
213
+ ## 主页与许可
214
+
215
+ - 主页:<https://console.volcengine.com/vefaas>
216
+ - 文档:<https://www.volcengine.com/docs/6662>
217
+ - 许可协议:MIT,详见 [LICENSE](./LICENSE)
package/bin/install.js ADDED
@@ -0,0 +1,144 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Copyright (c) 2025 Beijing Volcano Engine Technology Co., Ltd. and/or its affiliates
4
+ * SPDX-License-Identifier: MIT
5
+ */
6
+
7
+ import { execFileSync } from 'node:child_process';
8
+
9
+ const CLI_PACKAGE = '@volcengine/vefaas-cli';
10
+ const LEGACY_CLI_PACKAGE = '@volcengine/vefaas';
11
+ const SKILL_REPO = 'vefaas-dev/skills';
12
+ const isWindows = process.platform === 'win32';
13
+
14
+ function parseArgs() {
15
+ const options = {
16
+ skipCli: false,
17
+ skipSkill: false,
18
+ registry: '',
19
+ };
20
+
21
+ const args = process.argv.slice(2);
22
+ for (let index = 0; index < args.length; index++) {
23
+ const arg = args[index];
24
+ if (arg === '--skip-cli') {
25
+ options.skipCli = true;
26
+ } else if (arg === '--skip-skill') {
27
+ options.skipSkill = true;
28
+ } else if (arg === '--registry') {
29
+ options.registry = args[++index] || '';
30
+ } else if (arg.startsWith('--registry=')) {
31
+ options.registry = arg.slice('--registry='.length);
32
+ } else if (arg === '--help' || arg === '-h') {
33
+ showHelp();
34
+ process.exit(0);
35
+ } else {
36
+ throw new Error(`Unknown argument: ${arg}`);
37
+ }
38
+ }
39
+
40
+ return options;
41
+ }
42
+
43
+ function showHelp() {
44
+ console.log(`
45
+ Usage: npx ${CLI_PACKAGE}@latest install [options]
46
+
47
+ Options:
48
+ --skip-cli Do not install or update the global CLI.
49
+ --skip-skill Do not install the veFaaS AI skill.
50
+ --registry npm registry for installing the CLI.
51
+
52
+ Flow:
53
+ 1. npm install -g ${CLI_PACKAGE}@latest
54
+ 2. npx -y skills add ${SKILL_REPO} -y -g
55
+ `);
56
+ }
57
+
58
+ function execCmd(command, args, options = {}) {
59
+ if (isWindows) {
60
+ return execFileSync('cmd.exe', ['/c', command, ...args], options);
61
+ }
62
+ return execFileSync(command, args, options);
63
+ }
64
+
65
+ function run(command, args) {
66
+ console.log(`$ ${[command, ...args].join(' ')}`);
67
+ execCmd(command, args, {
68
+ stdio: 'inherit',
69
+ env: process.env,
70
+ });
71
+ }
72
+
73
+ function runOptional(command, args) {
74
+ try {
75
+ execCmd(command, args, {
76
+ stdio: 'ignore',
77
+ env: process.env,
78
+ });
79
+ } catch {}
80
+ }
81
+
82
+ function runCapture(command, args) {
83
+ return execCmd(command, args, {
84
+ stdio: ['ignore', 'pipe', 'pipe'],
85
+ encoding: 'utf8',
86
+ env: process.env,
87
+ }).trim();
88
+ }
89
+
90
+ function installCli(registry) {
91
+ console.log(`Installing ${CLI_PACKAGE}@latest globally...`);
92
+ runOptional('npm', ['uninstall', '-g', LEGACY_CLI_PACKAGE]);
93
+
94
+ const args = ['install', '-g', '--force', `${CLI_PACKAGE}@latest`];
95
+ if (registry) args.push('--registry', registry);
96
+ run('npm', args);
97
+ }
98
+
99
+ function skillAlreadyInstalled() {
100
+ try {
101
+ const output = runCapture('npx', ['-y', 'skills', 'ls', '-g']);
102
+ return /\bvefaas\b/i.test(output);
103
+ } catch {
104
+ return false;
105
+ }
106
+ }
107
+
108
+ function installSkill() {
109
+ if (skillAlreadyInstalled()) {
110
+ console.log('veFaaS skill is already installed.');
111
+ return;
112
+ }
113
+
114
+ console.log('Installing veFaaS skill...');
115
+ run('npx', ['-y', 'skills', 'add', SKILL_REPO, '-y', '-g']);
116
+ }
117
+
118
+ function printDone() {
119
+ console.log('');
120
+ console.log('veFaaS CLI setup completed.');
121
+ console.log('');
122
+ console.log('Next steps:');
123
+ console.log(' vefaas --version');
124
+ console.log(' vefaas login');
125
+ }
126
+
127
+ let options;
128
+
129
+ try {
130
+ options = parseArgs();
131
+ if (!options.skipCli) installCli(options.registry);
132
+ if (!options.skipSkill) installSkill();
133
+ printDone();
134
+ } catch (error) {
135
+ console.error('');
136
+ console.error(`veFaaS CLI setup failed: ${error instanceof Error ? error.message : String(error)}`);
137
+ console.error('');
138
+ console.error('You can retry manually:');
139
+ const registryArg = options?.registry ? ` --registry ${options.registry}` : '';
140
+ console.error(` npm uninstall -g ${LEGACY_CLI_PACKAGE}`);
141
+ console.error(` npm install -g --force ${CLI_PACKAGE}@latest${registryArg}`);
142
+ console.error(` npx -y skills add ${SKILL_REPO} -y -g`);
143
+ process.exit(1);
144
+ }
package/bin/vefaas.js ADDED
@@ -0,0 +1,91 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Copyright (c) 2025 Beijing Volcano Engine Technology Co., Ltd. and/or its affiliates
4
+ * SPDX-License-Identifier: MIT
5
+ */
6
+
7
+ import { spawnSync } from 'node:child_process';
8
+ import { existsSync } from 'node:fs';
9
+ import { dirname, join } from 'node:path';
10
+ import { fileURLToPath } from 'node:url';
11
+ import { createRequire } from 'node:module';
12
+
13
+ const require = createRequire(import.meta.url);
14
+ const args = process.argv.slice(2);
15
+ const installScript = join(dirname(fileURLToPath(import.meta.url)), 'install.js');
16
+
17
+ const SUPPORTED_TARGETS = {
18
+ 'linux-x64': {
19
+ packageName: '@volcengine/vefaas-cli-linux-x64',
20
+ binaryName: 'vefaas',
21
+ },
22
+ 'linux-arm64': {
23
+ packageName: '@volcengine/vefaas-cli-linux-arm64',
24
+ binaryName: 'vefaas',
25
+ },
26
+ 'darwin-x64': {
27
+ packageName: '@volcengine/vefaas-cli-darwin-x64',
28
+ binaryName: 'vefaas',
29
+ },
30
+ 'darwin-arm64': {
31
+ packageName: '@volcengine/vefaas-cli-darwin-arm64',
32
+ binaryName: 'vefaas',
33
+ },
34
+ 'win32-x64': {
35
+ packageName: '@volcengine/vefaas-cli-win32-x64',
36
+ binaryName: 'vefaas.exe',
37
+ },
38
+ 'win32-arm64': {
39
+ packageName: '@volcengine/vefaas-cli-win32-arm64',
40
+ binaryName: 'vefaas.exe',
41
+ },
42
+ };
43
+
44
+ function run(command, commandArgs) {
45
+ const result = spawnSync(command, commandArgs, {
46
+ stdio: 'inherit',
47
+ windowsHide: false,
48
+ });
49
+
50
+ if (result.error) {
51
+ console.error(result.error.message);
52
+ process.exit(1);
53
+ }
54
+ if (result.signal) {
55
+ process.kill(process.pid, result.signal);
56
+ }
57
+ process.exit(result.status ?? 1);
58
+ }
59
+
60
+ function resolveBinary(target) {
61
+ const packageJsonPath = require.resolve(`${target.packageName}/package.json`);
62
+ return join(dirname(packageJsonPath), 'bin', target.binaryName);
63
+ }
64
+
65
+ if (args[0] === 'install') {
66
+ run(process.execPath, [installScript, ...args.slice(1)]);
67
+ }
68
+
69
+ const targetKey = `${process.platform}-${process.arch}`;
70
+ const target = SUPPORTED_TARGETS[targetKey];
71
+
72
+ if (target) {
73
+ try {
74
+ run(resolveBinary(target), args);
75
+ } catch {}
76
+ }
77
+
78
+ const fallback = fileURLToPath(new URL('../dist/vefaas.js', import.meta.url));
79
+ if (existsSync(fallback)) {
80
+ run(process.execPath, [fallback, ...args]);
81
+ }
82
+
83
+ const supported = Object.keys(SUPPORTED_TARGETS).join(', ');
84
+ console.error(`vefaas does not ship a binary for ${targetKey}.`);
85
+ if (target) {
86
+ console.error(`Expected optional package: ${target.packageName}`);
87
+ console.error('Try reinstalling with optional dependencies enabled: npm install -g @volcengine/vefaas-cli@latest');
88
+ } else {
89
+ console.error(`Supported targets: ${supported}`);
90
+ }
91
+ process.exit(1);
package/package.json CHANGED
@@ -1,16 +1,27 @@
1
1
  {
2
2
  "name": "@volcengine/vefaas-cli",
3
- "version": "0.2.2-win32-x64",
3
+ "version": "0.2.2",
4
4
  "license": "MIT",
5
- "description": "The command-line interface for veFaaS (Windows x64 binary)",
5
+ "description": "The command-line interface for veFaaS",
6
+ "type": "module",
6
7
  "homepage": "https://console.volcengine.com/vefaas",
7
- "os": [
8
- "win32"
9
- ],
10
- "cpu": [
11
- "x64"
12
- ],
8
+ "bin": {
9
+ "vefaas": "bin/vefaas.js"
10
+ },
11
+ "preferGlobal": true,
13
12
  "files": [
14
- "bin"
15
- ]
13
+ "bin",
14
+ "CHANGELOG.md"
15
+ ],
16
+ "optionalDependencies": {
17
+ "@volcengine/vefaas-cli-linux-x64": "npm:@volcengine/vefaas-cli@0.2.2-linux-x64",
18
+ "@volcengine/vefaas-cli-linux-arm64": "npm:@volcengine/vefaas-cli@0.2.2-linux-arm64",
19
+ "@volcengine/vefaas-cli-darwin-x64": "npm:@volcengine/vefaas-cli@0.2.2-darwin-x64",
20
+ "@volcengine/vefaas-cli-darwin-arm64": "npm:@volcengine/vefaas-cli@0.2.2-darwin-arm64",
21
+ "@volcengine/vefaas-cli-win32-x64": "npm:@volcengine/vefaas-cli@0.2.2-win32-x64",
22
+ "@volcengine/vefaas-cli-win32-arm64": "npm:@volcengine/vefaas-cli@0.2.2-win32-arm64"
23
+ },
24
+ "engines": {
25
+ "node": ">=18"
26
+ }
16
27
  }
package/bin/vefaas.exe DELETED
Binary file