-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "arona",
"version": "1.0.0",
"description": "A simple bridge for every messenger.",
"author": "Taiwan Web Technology Promotion Organization",
"license": "MIT",
"main": "app.ts",
"type": "module",
"scripts": {
"dev": "tsx watch app.ts",
"start": "tsx app.ts",
"matrix-access": "tsx matrix_access.ts",
"lint": "eslint \"app.ts\" \"matrix_access.ts\" \"src/**/*.ts\"",
"lint:fix": "eslint \"app.ts\" \"matrix_access.ts\" \"src/**/*.ts\" --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@line/bot-sdk": "^9.2.2",
"@matrix-org/matrix-sdk-crypto-nodejs": "0.1.0-beta.6",
"@types/i18n": "^0.13.12",
"@types/node-telegram-bot-api": "^0.64.7",
"axios": "^1.6.8",
"discord.js": "^14.15.3",
"express": "^4.19.2",
"inquirer": "^8.2.4",
"lowdb": "^7.0.1",
"matrix-bot-sdk": "^0.7.1",
"nanoid": "^5.0.7",
"node-cache": "^5.1.2",
"node-telegram-bot-api": "^0.66.0",
"openai": "^4.52.0",
"pagefind": "^1.1.0",
"tsx": "^4.15.6",
"vitepress-plugin-pagefind": "^0.4.9",
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/lowdb": "^1.0.15",
"@types/nanoid": "^3.0.0",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"typescript": "^5.4.5",
"vitepress": "^1.3.0"
}
}