-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.57 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.57 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
{
"name": "dockergram",
"version": "1.0.0",
"description": "A Telegram bot to manage Docker containers via docker.sock",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"healthcheck": "node dist/healthcheck.js",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"docker:build": "docker buildx build --platform linux/amd64,linux/arm64 -t luall0/dockergram:latest -t luall0/dockergram:$(node -p \"require('./package.json').version\") --push .",
"docker:build-local": "docker build -t luall0/dockergram:local .",
"docker:run-local": "docker run --rm --name dockergram-test -v /var/run/docker.sock:/var/run/docker.sock --env-file .env luall0/dockergram:local"
},
"keywords": [
"telegram",
"bot",
"docker",
"container-management"
],
"author": "luall0",
"license": "Apache-2.0",
"dependencies": {
"dockerode": "^4.0.2",
"dotenv": "^16.4.5",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/dockerode": "^3.3.24",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^30.2.0",
"jest-mock-extended": "^4.0.0",
"ts-jest": "^29.4.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@4.0.2"
}