-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 983 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
{
"name": "reddit-place-bot",
"version": "1.0.0",
"description": "A bot that tweets a drawing from Reddit's r/place every hour",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node scripts/index.js",
"download:atlas": "node scripts/download-atlas.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martgnz/reddit-place-bot.git"
},
"keywords": ["reddit", "r/place", "bot", "twitter"],
"author": {
"name": "Martín González Gómez",
"url": "https://martingonzalez.net"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/martgnz/reddit-place-bot/issues"
},
"homepage": "https://twitter.com/rplacebot",
"dependencies": {
"canvas": "^2.9.1",
"d3-fetch": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-shape": "^3.0.1",
"dotenv": "^16.0.0",
"node-fetch": "^3.2.3",
"twitter-api-v2": "^1.12.0"
}
}