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
|
{
"name": "blog",
"version": "6.0.0",
"description": "An ephemeral blog with gemini and gopher archive",
"main": "lib/blog.js",
"bin": {
"blog": "./bin/blog.js"
},
"scripts": {
"document": "jsdoc2md -f 'lib/**/*.js' > doc/README.md",
"lint": "eslint .",
"test": "echo ':('"
},
"repository": {
"type": "git",
"url": "git+https://git.sr.ht/~rbdr/blog"
},
"author": "Ruben Beltran del Rio <contact@r.bdr.sh>",
"license": "Apache-2.0",
"homepage": "https://r.bdr.sh/blog.html",
"dependencies": {
"dot": "^1.1.3",
"entities": "^4.5.0",
"gemini-to-html": "^2.1.0",
"getenv": "^1.0.0",
"minimist": "^1.2.8"
},
"devDependencies": {
"@hapi/eslint-plugin": "^6.0.0",
"eslint": "^8.56.0",
"jsdoc-to-markdown": "^8.0.1"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module"
}
|