-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.63 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
{
"name": "yumi-bot",
"version": "1.0.0",
"description": "A normal Facebook Messenger bot to chat with you.",
"type": "commonjs",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:inspect": "tsx --inspect-brk src/index.ts",
"start": "tsx src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write --list-different .",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"keywords": [
"facebook",
"chat",
"api",
"messenger",
"e2ee",
"bot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yumi-team/yumi-bot.git"
},
"bugs": {
"url": "https://github.com/yumi-team/yumi-bot/issues"
},
"homepage": "https://github.com/yumi-team/yumi-bot#readme",
"author": "mikamisonodev & aiko-chan-ai",
"license": "AGPL-3.0-or-later",
"dependencies": {
"axios": "^1.13.4",
"debug": "^4.4.3",
"dotenv": "^17.2.3",
"meta-messenger.js": "^1.1.1",
"openai": "^6.17.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.0.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.37.0",
"@types/debug": "^4.1.12",
"@types/node": "^25.1.0",
"commitlint": "^20.1.0",
"eslint": "^9.37.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"engines": {
"node": ">=22.12.0"
}
}