-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 KB
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
54
55
{
"name": "pingable-bot",
"type": "module",
"version": "1.1.0",
"description": "A simple userbot that listening for pings and notifies owner",
"main": "./src/index.js",
"author": {
"name": "devilreef",
"email": "hello@femboy.page",
"url": "https://femboy.page"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@9.5.0",
"scripts": {
"build": "tsc && tsc-alias",
"dev": "cross-env NODE_ENV=development tsx ./src/index.ts",
"lint": "eslint --debug -c eslint.config.mjs .",
"prepare": "husky || true",
"start": "cross-env NODE_ENV=production node ./dist/index.js",
"commitlint": "commitlint --edit"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/common-tags": "^1.8.4",
"@types/node": "^20.17.11",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-promise": "^6.6.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@mtcute/dispatcher": "0.19.1",
"@mtcute/html-parser": "0.19.0",
"@mtcute/node": "0.19.1",
"common-tags": "^1.8.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"env-var": "^7.5.0",
"winston": "^3.17.0"
}
}