-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "shiba-every-hour",
"version": "1.0.0",
"description": "GitHub Actions to power shiba every hour bots",
"main": "index.mjs",
"scripts": {
"post-shibe:twitter": "node ./src/main.mjs --site=twitter",
"post-shibe:mastodon": "node ./src/main.mjs --site=mastodon",
"post-shibe:bluesky": "node ./src/main.mjs --site=bluesky",
"dev:post-shibe:twitter": "node --env-file=.env ./src/main.mjs --site=twitter",
"dev:post-shibe:mastodon": "node --env-file=.env ./src/main.mjs --site=mastodon",
"dev:post-shibe:bluesky": "node --env-file=.env ./src/main.mjs --site=bluesky"
},
"dependencies": {
"@atproto/api": "^0.12.21",
"masto": "^6.8.0",
"twitter-api-v2": "^1.15.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chiubaca/shiba-every-hour.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chiubaca/shiba-every-hour/issues"
},
"homepage": "https://github.com/chiubaca/shiba-every-hour#readme",
"volta": {
"node": "20.11.1"
}
}