-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 892 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": "mastodon-rss",
"version": "1.0.0",
"description": "Generates RSS feed from Mastodon home timeline",
"keywords": [
"mastodon",
"rss"
],
"homepage": "https://github.com/Avol-V/mastodon-rss",
"bugs": {
"url": "https://github.com/Avol-V/mastodon-rss/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Avol-V/mastodon-rss.git"
},
"license": "MIT",
"author": "Andrey Volynkin",
"type": "module",
"main": "index.js",
"bin": "index.js",
"files": [
"api",
"auth",
"lib",
"types",
"typings",
"index.js",
"jsconfig.json"
],
"scripts": {
"start": "node index.js",
"typecheck": "npx -p typescript tsc -p ./jsconfig.json --noEmit",
"prepublishOnly": "npm run typecheck"
},
"devDependencies": {
"@types/node": "^18.16.5"
},
"engines": {
"node": ">=18.0.0"
}
}