-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 820 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 820 Bytes
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
{
"name": "@rsscloud/rss-proxy",
"version": "0.3.1",
"description": "RSS feed proxy with rssCloud integration",
"type": "module",
"scripts": {
"dev": "tsx watch --env-file=.env src/index.ts",
"start": "tsx --env-file=.env src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"docker:build-push": "./scripts/docker-build-push.sh",
"docker:build-push-skip-quality": "./scripts/docker-build-push.sh --skip-quality",
"docker:dry-run": "./scripts/docker-build-push.sh --dry-run --skip-quality"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hono/node-server": "^1.19.13",
"fast-xml-parser": "^5.5.11",
"hono": "^4.12.12"
},
"devDependencies": {
"@types/node": "^25.5.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}