-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1019 Bytes
/
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
{
"name": "ipa-bot",
"version": "1.0.0",
"type": "commonjs",
"description": "",
"main": "build/index.js",
"scripts": {
"prestart": "yarn build",
"build": "yarn tsc",
"start": "node -r dotenv/config ./build/bot.js",
"up": "bash ./src/bash-decryptor/download-ipa.sh",
"format": "yarn prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.0",
"bagbak": "^3.0.27",
"dotenv": "^16.3.1",
"glob": "^10.3.10",
"mongo": "^0.1.0",
"sharp": "^0.32.6",
"telegram": "^2.19.8"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=19.0.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^20.8.8",
"dotenv-cli": "^7.3.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "3.0.3",
"typescript": "^5.2.2"
}
}