@fenix-agent/acp-runtime-cli 0.1.0

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.
Files changed (3) hide show
  1. package/README.md +123 -0
  2. package/dist/bin.js +74 -0
  3. package/package.json +30 -0
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@fenix-agent/acp-runtime-cli",
3
+ "version": "0.1.0",
4
+ "description": "ACP Runtime CLI — 在远程节点启动 ACP bridge 并向 RCS 主服务器注册",
5
+ "author": "3446798488@qq.com",
6
+ "license": "MIT",
7
+ "publishConfig": {
8
+ "registry": "https://registry.npmjs.org/",
9
+ "access": "public"
10
+ },
11
+ "type": "module",
12
+ "bin": {
13
+ "acp-runtime": "./dist/bin.js"
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "bun build src/bin.ts --outfile dist/bin.js --target=bun --minify",
20
+ "typecheck": "tsc -p tsconfig.json --noEmit",
21
+ "prepublishOnly": "bun run build"
22
+ },
23
+ "devDependencies": {
24
+ "acp-link": "workspace:*",
25
+ "@types/bun": "^1.3.14"
26
+ },
27
+ "engines": {
28
+ "bun": ">=1"
29
+ }
30
+ }