-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 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
{
"name": "usergram",
"version": "0.0.1",
"description": "Telegram userbot",
"main": "dist/index.ts",
"author": "MrMissx",
"license": "MIT",
"repository": {
"url": "https://github.com/userbotindo/UserGram.git"
},
"scripts": {
"genString": "node ./genString",
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "ts-node ./src/index.ts",
"lint": "eslint . --ext .ts --fix",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@types/node": "^18.11.9",
"dotenv": "^16.0.3",
"input": "^1.0.1",
"telegram": "^2.13.6",
"typescript": "^4.8.4"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.41.0",
"babel-jest": "^29.2.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1"
}
}