@elizaos/plugin-commands 1.0.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.
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@elizaos/plugin-commands",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "main": "dist/cjs/index.cjs",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "sideEffects": false,
9
+ "description": "Chat command system for Eliza agents (/help, /status, /reset, etc.)",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/elizaos/eliza.git"
13
+ },
14
+ "exports": {
15
+ "./package.json": "./package.json",
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.js",
19
+ "require": "./dist/cjs/index.cjs",
20
+ "default": "./dist/index.js"
21
+ }
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "dependencies": {
27
+ "@elizaos/core": "workspace:*"
28
+ },
29
+ "devDependencies": {
30
+ "@types/bun": "^1.2.22",
31
+ "@types/node": "^24.5.2",
32
+ "prettier": "3.6.2",
33
+ "typescript": "^5.9.2"
34
+ },
35
+ "scripts": {
36
+ "build": "bun run build.ts",
37
+ "dev": "bun --hot build.ts",
38
+ "test": "elizaos test",
39
+ "clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
40
+ "format": "prettier --write ./src",
41
+ "format:check": "prettier --check ./src",
42
+ "lint": "prettier --write ./src"
43
+ },
44
+ "publishConfig": {
45
+ "access": "public"
46
+ },
47
+ "agentConfig": {
48
+ "pluginType": "elizaos:plugin:1.0.0",
49
+ "pluginParameters": {
50
+ "COMMANDS_ENABLED": {
51
+ "type": "boolean",
52
+ "description": "Enable command system",
53
+ "required": false,
54
+ "default": "true",
55
+ "sensitive": false
56
+ },
57
+ "COMMANDS_CONFIG_ENABLED": {
58
+ "type": "boolean",
59
+ "description": "Enable /config command",
60
+ "required": false,
61
+ "default": "false",
62
+ "sensitive": false
63
+ },
64
+ "COMMANDS_DEBUG_ENABLED": {
65
+ "type": "boolean",
66
+ "description": "Enable /debug command",
67
+ "required": false,
68
+ "default": "false",
69
+ "sensitive": false
70
+ },
71
+ "COMMANDS_BASH_ENABLED": {
72
+ "type": "boolean",
73
+ "description": "Enable /bash command (elevated)",
74
+ "required": false,
75
+ "default": "false",
76
+ "sensitive": false
77
+ },
78
+ "COMMANDS_RESTART_ENABLED": {
79
+ "type": "boolean",
80
+ "description": "Enable /restart command",
81
+ "required": false,
82
+ "default": "true",
83
+ "sensitive": false
84
+ }
85
+ }
86
+ },
87
+ "milaidy": {
88
+ "platforms": [
89
+ "node"
90
+ ],
91
+ "runtime": "node",
92
+ "platformDetails": {
93
+ "node": "Default export (Node.js)"
94
+ }
95
+ }
96
+ }