-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"bugs": {
"url": "https://github.com/HackHTU/RSSBook/issues"
},
"dependencies": {
"@elysiajs/eden": "^1.4.5",
"@elysiajs/html": "^1.4.0",
"@elysiajs/node": "^1.4.2",
"@elysiajs/openapi": "^1.4.11",
"@elysiajs/server-timing": "^1.4.0",
"@elysiajs/static": "^1.4.7",
"@rowanmanning/feed-parser": "^2.1.1",
"cheerio": "^1.1.2",
"dayjs": "^1.11.19",
"elysia": "^1.4.17",
"feed": "^5.1.0",
"ofetch": "^1.5.1",
"sanitize-html": "^2.17.0",
"unstorage": "1.17.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/sanitize-html": "^2.16.0",
"bun-types": "latest"
},
"homepage": "https://github.com/HackHTU/RSSBook",
"license": "MIT",
"main": "src/index.ts",
"name": "rssbook",
"packageManager": "[email protected]",
"scripts": {
"build": "NODE_ENV=production bun build src/index.ts",
"build:deno": "",
"build:node": "",
"check": "bun run check:ts && bun run check:biome",
"check:biome": "bunx biome check --write",
"check:ts": "bunx tsc --noEmit",
"dev": "bun --watch run src/index.ts",
"dev:cf": "wrangler dev",
"dev:deno": "deno serve --watch src/deno.ts",
"dev:netlify": "netlify dev",
"dev:node": "npx tsx src/node.ts",
"source:new": "bun run scripts/add.source.ts",
"source:test": "bun run scripts/test.source.ts",
"source:test:all": "bun test ./src/routers",
"test": "xss-scan && bun test ./src/tests"
},
"type": "module",
"version": "0.0.1"
}