-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
52
53
{
"private": true,
"name": "smart-home-media-assistant-bot",
"version": "1.16.0",
"author": "Kirill Mesniankin <[email protected]>",
"license": "MIT",
"type": "module",
"main": "index.js",
"packageManager": "[email protected]",
"scripts": {
"dev": "NODE_ENV=development && node --loader ts-node/esm --enable-source-maps --no-warnings=ExperimentalWarning ./src/index.ts",
"build": "rm -rf dist && tsc",
"start": "NODE_ENV=production && node ./dist/index.js",
"lint": "eslint src"
},
"dependencies": {
"@grammyjs/fluent": "^1.0.3",
"@moebius/fluent": "^1.1.0",
"cheerio": "^1.0.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"file-type": "^20.0.0",
"fluent-ffmpeg": "^2.1.3",
"grammy": "^1.34.0",
"parse-torrent": "^11.0.18",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"tmp": "^0.2.3",
"tough-cookie": "^5.0.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/git": "^10.0.1",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^22.10.2",
"@types/parse-torrent": "^5.8.7",
"@types/tmp": "^0.2.6",
"@types/uuid": "^10.0.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
}
}