-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@profullstack/rss-amplifier",
"version": "0.1.0",
"description": "A CLI tool for contextual RSS amplification with AI-driven snippet generation and social media posting",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"README.md",
"bin",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/profullstack/rss-amplifier.git"
},
"bugs": {
"url": "https://github.com/profullstack/rss-amplifier/issues"
},
"homepage": "https://profullstack.com",
"scripts": {
"test": "mocha test/**/*.test.js",
"test:config": "mocha test/config-manager.test.js",
"test:feeds": "mocha test/feed-manager.test.js",
"test:snippets": "mocha test/snippet-manager.test.js",
"test:cli": "mocha test/cli.test.js",
"example": "node examples/basic-usage.js",
"example:import": "node examples/feed-import.js",
"cli": "./bin/rss-amplifier.js",
"setup": "./bin/rss-amplifier.js setup",
"import": "./bin/rss-amplifier.js import",
"feeds": "./bin/rss-amplifier.js feeds",
"snippets": "./bin/rss-amplifier.js snippets",
"schedule": "./bin/rss-amplifier.js schedule",
"lint": "eslint src/ test/ bin/ --fix",
"format": "prettier --write src/ test/ bin/ examples/",
"prepare": "husky"
},
"bin": {
"rss-amplifier": "./bin/rss-amplifier.js",
"rssamp": "./bin/rss-amplifier.js"
},
"keywords": [
"rss",
"opml",
"social-media",
"automation",
"ai",
"content-generation",
"mastodon",
"bluesky",
"twitter",
"x",
"linkedin",
"nostr",
"cli",
"contextual-marketing",
"snippet-generation"
],
"author": "Profullstack, Inc.",
"license": "MIT",
"packageManager": "pnpm@10.6.5",
"dependencies": {
"ansi-colors": "^4.1.3",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"inquirer": "^12.6.3",
"openai": "^4.67.3",
"yargs": "^17.7.2",
"node-cron": "^3.0.3",
"rss-parser": "^3.13.0",
"xml2js": "^0.6.2",
"@supabase/supabase-js": "^2.39.0",
"@profullstack/social-poster": "^1.1.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.57.0",
"esmock": "^2.7.0",
"husky": "^9.1.7",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^4.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"import": "./index.js"
},
"./config-manager": {
"import": "./src/config-manager.js"
},
"./feed-manager": {
"import": "./src/feed-manager.js"
},
"./snippet-manager": {
"import": "./src/snippet-manager.js"
},
"./ai-service": {
"import": "./src/ai-service.js"
},
"./social-poster": {
"import": "./src/social-poster.js"
}
}
}