-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "tietie-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "pm2 start --name tietie --interpreter tsx src/index.ts",
"restart": "pm2 restart tietie",
"stop": "pm2 stop tietie",
"migrate": "npm run stop; tsx database/search_migration.ts; npm run start",
"dev": "tsx --inspect src/index.ts",
"matrix:login": "tsx src/scripts/matrix_login.ts",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rikumi/tietie-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rikumi/tietie-bot/issues"
},
"homepage": "https://github.com/rikumi/tietie-bot#readme",
"dependencies": {
"await-semaphore": "^0.1.3",
"axios": "^1.4.0",
"cheerio": "1.0.0-rc.12",
"dayjs": "^1.11.10",
"discord-emoji": "^2.4.0",
"discord-user-bots": "^1.6.0",
"mathjs": "^13.0.1",
"matrix-bot-sdk": "^0.7.1",
"minecraft-protocol": "^1.36.1",
"nodejieba": "^2.6.0",
"pm2": "^5.2.2",
"prettier": "^2.7.1",
"sqlite-async": "^1.1.5",
"sqlite3": "^5.1.2",
"telegraf": "^4.16.3"
},
"devDependencies": {
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"undici": "^6.19.2"
}
}