-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "xitpbpt",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"start": "clear && rm -rf dist/ && npx tsc --project tsconfig.json && node dist",
"test": "clear && rm -rf dist-test/ && npx tsc --project tsconfig.test.json && node dist-test",
"compile": "clear && rm -rf dist/ && npx tsc --project tsconfig.json",
"compile-test": "clear && rm -rf dist-test/ && npx tsc --project tsconfig.test.json",
"approve": "rm -rf src/* && cp -r test/* src/",
"apply": "rm -rf test/* && cp -r src/* test/"
},
"author": "Xitonight",
"license": "GPL-3.0-only",
"devDependencies": {
"@types/node": "^20.16.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"@mtcute/crypto-node": "^0.13.0",
"@mtcute/dispatcher": "^0.13.4",
"@mtcute/node": "^0.13.0",
"@types/inquirer": "^9.0.7",
"dotenv": "^16.4.5",
"googleapis": "^137.1.0",
"inquirer": "^9.3.6",
"mongodb": "^6.8.0"
},
"imports": {
"#bot/*": "./dist/*"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Xitonight/mactobot.git"
}
}