-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 986 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
41
42
{
"name": "sumerian-bot",
"description": "An educational Mastodon bot that posts one Sumerian cuneiform a day.",
"author": "edo999@gmail.com",
"keywords": [
"education",
"language",
"dead language",
"Sumerian",
"assyriology",
"sumerology"
],
"license": "BlueOak-1.0.0",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gmarty/sumerian-bot.git"
},
"bugs": {
"url": "https://github.com/gmarty/sumerian-bot/issues"
},
"homepage": "https://github.com/gmarty/sumerian-bot#readme",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"post": "node index.js"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.35.0",
"masto": "^6.10.3",
"sharp": "^0.33.5",
"svg-path-bounds": "^1.0.2",
"text-to-svg": "^3.1.5"
},
"devDependencies": {
"prettier": "^3.5.0"
},
"prettier": {
"singleQuote": true
}
}