forked from yGuy/chatgpt-mattermost-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.63 KB
/
package.json
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
{
"name": "chatgpt-mattermost-bot",
"version": "3.1.0",
"description": "ChatGPT bot on mattermost",
"private": true,
"keywords": [
"chatgpt",
"bot",
"ai",
"openai",
"mattermost"
],
"main": "dist/MultiInstance.mjs",
"type": "module",
"license": "MIT",
"bugs": {
"url": "https://github.com/takuya-o/chatgpt-mattermost-bot/issues"
},
"homepage": "https://github.com/takuya-o/chatgpt-mattermost-bot#readme",
"files": [
"dist**/*"
],
"scripts": {
"production": "node ./dist/MultiInstance.mjs",
"upgrade": "npx --yes npm-check-updates -u && npm update && npm dedup",
"clean": "rm -rf .npm/ node_modules/ dist/*; npm ci",
"build": "rimraf dist && node esbuild.config.js",
"lint": "eslint src && prettier -c src && tsc --noEmit",
"textlint": "textlint README.md MEMO.md .github/copilot-instructions.md",
"format": "prettier --write src",
"format-textlint": "textlint --fix README.md MEMO.md .github/copilot-instructions.md",
"test": "echo 'There is no vitest'",
"watch": "tsx --watch ./src/MultiInstance.ts",
"debug": "tsx ./src/MultiInstance.ts",
"start": "tsx ./src/MultiInstance.ts",
"start-ts-node": "node --loader ts-node/esm ./src/MultiInstance.ts",
"start-BAD": "ts-node ./src/MultiInstance.ts",
"build-test": "tsc"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"@google/generative-ai": "^0.21.0",
"@mattermost/client": "^10.2.0",
"@mattermost/types": "^10.2.0",
"cohere-ai": "^7.15.0",
"debug-level": "3.2.1",
"form-data": "^4.0.1",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"openai": "^4.77.0",
"sharp": "^0.33.5",
"tiktoken-node": "^0.0.7",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@swc/core": "^1.10.3",
"@swc/helpers": "^0.5.15",
"@types/isomorphic-fetch": "^0.0.39",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@types/node-fetch": "^2.6.12",
"@types/ws": "^8.5.13",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"textlint": "^14.4.0",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-preset-ja-spacing": "^2.4.3",
"textlint-rule-preset-ja-technical-writing": "^10.0.1",
"textlint-rule-preset-jtf-style": "^3.0.1",
"textlint-rule-prh": "^6.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"engineStrict": true,
"engines": {
"node": ">=19.0.0",
"npm": ">=9.6.3"
}
}