-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.39 KB
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
43
44
45
46
47
{
"name": "social-feed-aggregator",
"version": "1.0.0",
"description": "A token-gated social media feed aggregator that scrapes Twitter, Reddit, and GitHub. Runs on GitHub Pages with automated scraping via GitHub Actions.",
"main": "src/index.js",
"bin": {
"feed": "./src/feed-cli.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node src/index.js",
"scrape": "node src/scraper-cli.js",
"feed": "node src/feed-cli.js",
"build:tools": "node scripts/generate-tool-manifest.js",
"tool:classify": "node docs/tools/tool-runner.js classify-feed --input docs/data/feed.json --output docs/data/feed.json",
"tool:classify:dry": "node docs/tools/tool-runner.js classify-feed --input docs/data/feed.json --dry-run"
},
"keywords": [
"social-media",
"aggregator",
"twitter",
"reddit",
"github",
"github-pages",
"scraper",
"feed-reader"
],
"author": "Ben Tossell",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bentossell/ccc-new.git"
},
"bugs": {
"url": "https://github.com/bentossell/ccc-new/issues"
},
"homepage": "https://github.com/bentossell/ccc-new#readme",
"type": "commonjs",
"dependencies": {
"@octokit/graphql": "^9.0.2",
"@supabase/supabase-js": "^2.86.0",
"axios": "^1.12.2",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"node-cron": "^4.2.1"
}
}