-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1001 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
{
"name": "yes-bot-lib",
"version": "2.0.9",
"description": "a bot library for internal projects",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Project-Yes-Global/yes-bot-lib.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Project-Yes-Global/yes-bot-lib/issues"
},
"homepage": "https://github.com/Project-Yes-Global/yes-bot-lib#readme",
"devDependencies": {
"tsup": "^7.2.0"
},
"dependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.4.5",
"@types/node-telegram-bot-api": "^0.61.6",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"node-telegram-bot-api": "^0.65.1",
"openai": "^4.45.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}