-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "telegraf-dynamodb-session",
"version": "0.1.4",
"description": "DynamoDB store adapters for Telegraf",
"homepage": "https://github.com/R11baka/telegraf-session-dynamodb/blob/master/readme.md",
"main": "build/index.js",
"types": "build/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint src --max-warnings 10",
"prettier-check": "npx prettier --config .prettierrc . --check",
"prettier-format": "npx prettier --config .prettierrc . --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"telegraf",
"session",
"dynamodb"
],
"author": "r11baka@gmail.com",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"globals": "^15.2.0",
"prettier": "3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3",
"telegraf": ">=4.12.0"
}
}