@elizaos/plugin-cli 2.0.0-alpha.7 → 2.0.0-alpha.9

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 (1) hide show
  1. package/package.json +68 -68
package/package.json CHANGED
@@ -1,70 +1,70 @@
1
1
  {
2
- "name": "@elizaos/plugin-cli",
3
- "version": "2.0.0-alpha.7",
4
- "description": "CLI framework plugin for ElizaOS agents - provides command registration, execution, and utilities",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js",
12
- "default": "./dist/index.js"
13
- }
14
- },
15
- "files": [
16
- "dist"
17
- ],
18
- "scripts": {
19
- "build": "tsc",
20
- "build:watch": "tsc --watch",
21
- "dev": "tsc --watch",
22
- "test": "npx -y vitest@4.0.18 run --passWithNoTests",
23
- "lint": "bunx @biomejs/biome check --write --unsafe .",
24
- "lint:check": "bunx @biomejs/biome check .",
25
- "format": "bunx @biomejs/biome format --write .",
26
- "format:check": "bunx @biomejs/biome format .",
27
- "typecheck": "tsc --noEmit"
28
- },
29
- "dependencies": {
30
- "@elizaos/core": "2.0.0-alpha.3",
31
- "commander": "^12.1.0"
32
- },
33
- "peerDependencies": {
34
- "@elizaos/core": "2.0.0-alpha.3"
35
- },
36
- "devDependencies": {
37
- "@biomejs/biome": "^2.3.11",
38
- "strip-literal": "^3.1.0",
39
- "typescript": "^5.7.3",
40
- "vitest": "^4.0.18"
41
- },
42
- "keywords": [
43
- "elizaos",
44
- "plugin",
45
- "cli",
46
- "command-line",
47
- "terminal"
48
- ],
49
- "license": "MIT",
50
- "publishConfig": {
51
- "access": "public"
52
- },
53
- "agentConfig": {
54
- "pluginType": "elizaos:plugin:1.0.0",
55
- "pluginParameters": {
56
- "CLI_NAME": {
57
- "type": "string",
58
- "description": "CLI command name",
59
- "required": false,
60
- "sensitive": false
61
- },
62
- "CLI_VERSION": {
63
- "type": "string",
64
- "description": "CLI version string",
65
- "required": false,
66
- "sensitive": false
67
- }
68
- }
69
- }
2
+ "name": "@elizaos/plugin-cli",
3
+ "version": "2.0.0-alpha.9",
4
+ "description": "CLI framework plugin for ElizaOS agents - provides command registration, execution, and utilities",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsc",
20
+ "build:watch": "tsc --watch",
21
+ "dev": "tsc --watch",
22
+ "test": "vitest run --passWithNoTests",
23
+ "lint": "bunx @biomejs/biome check --write --unsafe .",
24
+ "lint:check": "bunx @biomejs/biome check .",
25
+ "format": "bunx @biomejs/biome format --write .",
26
+ "format:check": "bunx @biomejs/biome format .",
27
+ "typecheck": "tsc --noEmit"
28
+ },
29
+ "dependencies": {
30
+ "@elizaos/core": "2.0.0-alpha.3",
31
+ "commander": "^12.1.0"
32
+ },
33
+ "peerDependencies": {
34
+ "@elizaos/core": "2.0.0-alpha.3"
35
+ },
36
+ "devDependencies": {
37
+ "@biomejs/biome": "^2.3.11",
38
+ "strip-literal": "^3.1.0",
39
+ "typescript": "^5.7.3",
40
+ "vitest": "^4.0.18"
41
+ },
42
+ "keywords": [
43
+ "elizaos",
44
+ "plugin",
45
+ "cli",
46
+ "command-line",
47
+ "terminal"
48
+ ],
49
+ "license": "MIT",
50
+ "publishConfig": {
51
+ "access": "public"
52
+ },
53
+ "agentConfig": {
54
+ "pluginType": "elizaos:plugin:1.0.0",
55
+ "pluginParameters": {
56
+ "CLI_NAME": {
57
+ "type": "string",
58
+ "description": "CLI command name",
59
+ "required": false,
60
+ "sensitive": false
61
+ },
62
+ "CLI_VERSION": {
63
+ "type": "string",
64
+ "description": "CLI version string",
65
+ "required": false,
66
+ "sensitive": false
67
+ }
68
+ }
69
+ }
70
70
  }