-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
54
55
56
57
58
59
60
61
62
{
"name": "@xleddyl/telegen-ts",
"version": "3.0.3",
"description": "The autogenerated TypeScript library for the official Telegram Bot API",
"keywords": [
"telegram",
"bot",
"typescript",
"javascript",
"library"
],
"author": "xleddyl",
"license": "ISC",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc && rm -r ./lib/utils",
"translate": "ts-node src/utils/translator.ts && prettier --write \"src/core/telegram\"",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release": "yarn build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xleddyl/telegen-ts.git"
},
"bugs": {
"url": "https://github.com/xleddyl/telegen-ts/issues"
},
"homepage": "https://github.com/xleddyl/telegen-ts#readme",
"dependencies": {
"axios": "^1.7.7",
"install": "^0.13.0",
"yarn": "^1.22.22"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.4.1",
"jsdom": "^25.0.1",
"nodemon": "^3.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.6.3"
},
"files": [
"lib/**/*"
]
}