aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workers/package.json
blob: fa7ffeac0bc2a9f53a6eba088e1141ebe82e9695 (plain) (blame)
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
{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@karakeep/workers",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "dependencies": {
    "@ghostery/adblocker-playwright": "^2.5.1",
    "@hono/node-server": "^1.19.0",
    "@hono/prometheus": "^1.0.2",
    "@karakeep/db": "workspace:^0.1.0",
    "@karakeep/shared": "workspace:^0.1.0",
    "@karakeep/shared-server": "workspace:^0.1.0",
    "@karakeep/trpc": "workspace:^0.1.0",
    "@karakeep/tsconfig": "workspace:^0.1.0",
    "@mozilla/readability": "^0.6.0",
    "@tsconfig/node22": "^22.0.0",
    "archiver": "^7.0.1",
    "async-mutex": "^0.4.1",
    "dompurify": "^3.2.4",
    "dotenv": "^16.4.1",
    "drizzle-orm": "^0.44.2",
    "execa": "9.3.1",
    "hono": "^4.10.6",
    "http-proxy-agent": "^7.0.2",
    "https-proxy-agent": "^7.0.6",
    "ipaddr.js": "^2.2.0",
    "jsdom": "^24.0.0",
    "liteque": "^0.7.0",
    "lru-cache": "^11.2.2",
    "metascraper": "^5.49.5",
    "metascraper-amazon": "^5.49.5",
    "metascraper-author": "^5.49.5",
    "metascraper-date": "^5.49.5",
    "metascraper-description": "^5.49.5",
    "metascraper-image": "^5.49.5",
    "metascraper-logo": "^5.49.5",
    "metascraper-logo-favicon": "^5.49.5",
    "metascraper-publisher": "^5.49.5",
    "metascraper-readability": "^5.49.6",
    "metascraper-title": "^5.49.5",
    "metascraper-twitter": "^5.45.6",
    "metascraper-url": "^5.49.5",
    "metascraper-youtube": "^5.49.7",
    "node-cron": "^3.0.3",
    "node-fetch": "^3.3.2",
    "pdf2json": "^3.1.5",
    "pdf2pic": "^3.1.3",
    "pdfjs-dist": "^4.2.67",
    "playwright": "^1.56.1",
    "playwright-extra": "^4.3.6",
    "prom-client": "^15.1.3",
    "puppeteer-extra-plugin-stealth": "^2.11.2",
    "rss-parser": "^3.13.0",
    "tesseract.js": "^5.1.1",
    "tsx": "^4.8.1",
    "typescript": "^5.9",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@types/archiver": "^7.0.0",
    "@types/jsdom": "^21.1.6",
    "@types/node-cron": "^3.0.11",
    "tsdown": "^0.12.9"
  },
  "scripts": {
    "start": "tsx watch index.ts",
    "start:prod": "tsx index.ts",
    "build": "tsdown",
    "build:watch": "tsdown --watch",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix",
    "format": "prettier . --cache --ignore-path ../../.prettierignore --check",
    "format:fix": "prettier . --cache --ignore-path ../../.prettierignore --write",
    "typecheck": "tsc --noEmit"
  },
  "prettier": "@karakeep/prettier-config"
}