-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.55 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
{
"name": "mrtdown-data",
"version": "1.0.0",
"description": "Data repository",
"type": "module",
"main": "dist/api/index.js",
"scripts": {
"build": "tsc",
"postbuild": "npm run db:generate && npm run sentry:sourcemaps",
"test": "vitest",
"ingest:webhook": "tsx src/scripts/ingestViaWebhook.ts",
"check-rss-feeds": "tsx src/scripts/checkRssFeeds.ts",
"db:generate": "tsx src/db/generate/index.ts",
"api:dev": "tsx --watch api/index.ts",
"sentry:sourcemaps": "sentry-cli sourcemaps inject ./dist && sentry-cli sourcemaps upload ./dist --release $SENTRY_RELEASE"
},
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.4",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.0.9"
},
"dependencies": {
"@duckdb/node-api": "^1.4.3-r.2",
"@hono/node-server": "^1.19.6",
"@hono/standard-validator": "^0.1.4",
"@hono/zod-validator": "^0.4.3",
"@scalar/hono-api-reference": "^0.9.13",
"@sentry/cli": "^2.58.0",
"@sentry/node": "^10.27.0",
"dotenv": "^16.4.7",
"fuse.js": "^7.1.0",
"generic-pool": "^3.9.0",
"hast-util-from-html": "^2.0.3",
"hast-util-to-mdast": "^10.1.2",
"hono": "^4.11.4",
"hono-openapi": "^0.5.0-rc.3",
"luxon": "^3.5.0",
"mdast-util-gfm": "^3.1.0",
"mdast-util-to-markdown": "^2.1.2",
"openai": "^5.16.0",
"rrule-rust": "^2.0.2",
"rss-parser": "^3.13.0",
"zod": "^4.0.14"
},
"overrides": {
"zod": "^4.0.14"
}
}