-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
36
37
{
"name": "edm00se-feed",
"version": "1.0.9",
"description": "One centralized RSS feed for all of the content @edm00se creates across the web (aggregates from Twitter, RSS, Atom, Mastodon, YouTube)",
"main": "activityFeed.js",
"type": "module",
"scripts": {
"build": "run-s build:**",
"build:dir": "make-dir docs/public",
"build:feed": "node feed.js > docs/feed.rss",
"build:site": "npm run build --prefix static-reader",
"build:static": "cpy 'static-reader/dist/**/*' docs/",
"postinstall": "cd static-reader && npm ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edm00se/feed.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/edm00se/feed/issues"
},
"author": {
"name": "Eric McCormick",
"url": "https://edm00se.codes/"
},
"homepage": "https://github.com/edm00se/feed#readme",
"dependencies": {
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"cpy-cli": "^4.2.0",
"dotenv": "^16.0.3",
"fast-xml-parser": "^4.4.1",
"make-dir-cli": "^3.0.0",
"npm-run-all": "^4.1.5"
}
}