-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 924 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
{
"author": "Florian Imdahl <[email protected]>",
"bin": {
"impfstatus": "dist/cli.js"
},
"dependencies": {
"axios": "1.7.9",
"commander": "13.1.0",
"megalodon": "10.1.1",
"ntfy": "1.7.2"
},
"description": "Toots Germany's COVID-19 vaccination progress to Mastodon.",
"devDependencies": {
"rimraf": "6.0.1",
"typescript": "5.7.3"
},
"engines": {
"node": ">= 18.0"
},
"files": [
"dist"
],
"keywords": [
"cli",
"typescript"
],
"license": "GPL-3.0",
"module": "dist/index.js",
"name": "@ffflorian/mastodon-bot-impfstatus",
"private": true,
"repository": "https://github.com/ffflorian/node-packages/tree/main/packages/mastodon-bot-impfstatus",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"start": "node --loader ts-node/esm src/cli.ts"
},
"type": "module",
"version": "1.7.2"
}