-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.04 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
{
"name": "rssany",
"version": "0.3.6",
"description": "Universal RSS/Atom/JSON Feed pipeline — fetches, extracts, parses and converts any web content into consumable feeds with plugin support",
"author": "Joo",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"rssany": "./bin/rssany.js"
},
"files": [
"dist",
"bin",
"scripts/user-dir.mjs",
"app/plugins/builtin",
"app/plugins/site.rssany.js",
"statics",
"app/webui/build",
".env.example",
"README.md",
"init",
"scripts/reset.mjs",
"scripts/postinstall.mjs",
"scripts/user-dir.mjs",
"scripts/dev.mjs"
],
"engines": {
"node": ">=20 <24"
},
"scripts": {
"build": "vite build",
"dev": "node scripts/dev.mjs",
"dev:backend": "cross-env PORT=3999 tsx app/index.ts",
"start": "node dist/index.js",
"serve:route": "node scripts/serve-route.mjs",
"serve:app": "npx tsx app/index.ts",
"test": "vitest",
"test:run": "vitest run --passWithNoTests",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"reset": "node scripts/reset.mjs",
"postinstall": "node scripts/postinstall.mjs",
"proxy-browser": "tsx scripts/proxy-browser.ts",
"webui:install": "cd app/webui && npm install",
"webui:dev": "cd app/webui && npm run build:watch",
"webui:build": "cd app/webui && npm run build",
"webui:watch": "cd app/webui && npm run build:watch",
"dev:all": "npm run dev",
"build:all": "npm run build && npm run webui:build",
"prepublishOnly": "npm run build:all",
"docker:build": "bash scripts/docker-build.sh",
"docker:build:tag": "bash scripts/docker-build.sh",
"landing:install": "cd landing && npm install",
"landing:dev": "cd landing && npm run dev",
"landing:build": "cd landing && npm run build",
"deploy": "node scripts/deploy-landing.mjs",
"deploy:landing": "node scripts/deploy-landing.mjs"
},
"keywords": [
"rss",
"atom",
"json-feed",
"subscription",
"pipeline"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/jsdom": "^28.0.3",
"@types/mailparser": "^3.4.6",
"@types/node": "^25.2.0",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^7.0.11",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"ssh2": "^1.17.0",
"tsx": "^4.19.0",
"typescript": "~5.6.0",
"typescript-eslint": "^8.15.0",
"vite": "^6.4.3",
"vitest": "^4.1.8"
},
"dependencies": {
"@hono/node-server": "^1.19.10",
"@mozilla/readability": "^0.6.0",
"cron-parser": "^5.0.0",
"dotenv": "^16.4.7",
"hono": "^4.12.12",
"https-proxy-agent": "^7.0.6",
"imapflow": "^1.2.10",
"jsdom": "^29.1.1",
"mailparser": "^3.9.3",
"marked": "^17.0.3",
"node-cron": "^4.2.1",
"node-html-parser": "^7.0.2",
"nodemailer": "^8.0.2",
"openai": "^6.42.0",
"puppeteer-core": "^24.36.0",
"rss-parser": "^3.13.0"
}
}