-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.1 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@bealers/plugin-mattermost",
"description": "Mattermost client plugin for ElizaOS - enables AI agent integration with Mattermost chat platforms",
"version": "0.5.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageType": "plugin",
"platform": "node",
"license": "MIT",
"author": "bealers",
"keywords": [
"plugin",
"elizaos",
"mattermost",
"chat",
"client",
"ai-agent"
],
"repository": {
"type": "git",
"url": "https://github.com/bealers/plugin-mattermost"
},
"homepage": "https://elizaos.ai",
"bugs": {
"url": "https://github.com/bealers/plugin-mattermost/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"README.md",
".npmignore",
"package.json",
"tsup.config.ts"
],
"dependencies": {
"@elizaos/core": "latest",
"@elizaos/plugin-bootstrap": "1.0.15",
"@elizaos/plugin-openai": "1.0.6",
"@mattermost/client": "^10.8.0",
"axios": "^1.10.0",
"ws": "^8.18.2",
"zod": "^3.25.67"
},
"devDependencies": {
"@elizaos/cli": "latest",
"@eslint/js": "^9.29.0",
"@mattermost/types": "^10.8.0",
"@types/node": "^24.0.4",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"dotenv": "16.4.5",
"eslint": "^9.29.0",
"prettier": "3.5.3",
"tsup": "8.5.0",
"tsx": "^4.20.3",
"typescript": "5.8.2",
"typescript-eslint": "^8.35.0",
"uuid": "^11.1.0",
"vitest": "3.1.4"
},
"scripts": {
"start": "elizaos start",
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:unit": "vitest run __tests__/unit",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch __tests__/unit",
"test:manual": "vitest run __tests__/manual",
"publish": "elizaos publish",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src",
"type-check": "tsc --noEmit",
"bot:start": "elizaos dev --character hiro.character.json",
"test:websocket": "tsx scripts/test-websocket.ts",
"test:websocket-events": "tsx scripts/test-websocket-events.ts"
},
"publishConfig": {
"access": "public"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"MATTERMOST_URL": {
"type": "string",
"description": "Mattermost server URL (e.g., https://chat.example.com)"
},
"MATTERMOST_TOKEN": {
"type": "string",
"description": "Mattermost bot access token"
},
"MATTERMOST_BOT_USERNAME": {
"type": "string",
"description": "Mattermost bot username (e.g., elizaos-bot)"
},
"MATTERMOST_TEAM": {
"type": "string",
"description": "Mattermost team name for bot operations"
}
}
},
"gitHead": "d5bd5c43bfebeb7ac02f9e029f924cb6cd5c2ec7",
"npmPackage": "@bealers/plugin-mattermost"
}