aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workers/package.json
blob: bbd5b17dfd7fffa33b135b31ccc174e302c29fc5 (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
{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@hoarder/workers",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "@hoarder/db": "workspace:^0.1.0",
    "@hoarder/queue": "workspace:^0.1.0",
    "@hoarder/shared": "workspace:^0.1.0",
    "@hoarder/tsconfig": "workspace:^0.1.0",
    "@mozilla/readability": "^0.5.0",
    "@tsconfig/node21": "^21.0.1",
    "async-mutex": "^0.4.1",
    "dompurify": "^3.0.9",
    "dotenv": "^16.4.1",
    "drizzle-orm": "^0.33.0",
    "execa": "^9.1.0",
    "jsdom": "^24.0.0",
    "metascraper": "^5.43.4",
    "metascraper-amazon": "^5.45.0",
    "metascraper-description": "^5.43.4",
    "metascraper-image": "^5.43.4",
    "metascraper-logo": "^5.43.4",
    "metascraper-logo-favicon": "^5.43.4",
    "metascraper-readability": "^5.43.4",
    "metascraper-title": "^5.43.4",
    "metascraper-twitter": "^5.43.4",
    "metascraper-url": "^5.43.4",
    "ollama": "^0.5.0",
    "openai": "^4.29.0",
    "pdf2json": "^3.0.5",
    "pdfjs-dist": "^4.0.379",
    "puppeteer": "^22.0.0",
    "puppeteer-extra": "^3.3.6",
    "puppeteer-extra-plugin-adblocker": "^2.13.6",
    "puppeteer-extra-plugin-stealth": "^2.11.2",
    "tsx": "^4.7.1",
    "typescript": "^5.3.3",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@hoarder/eslint-config": "workspace:^0.2.0",
    "@hoarder/prettier-config": "workspace:^0.1.0",
    "@types/dompurify": "^3.0.5",
    "@types/jsdom": "^21.1.6",
    "@types/metascraper": "^5.14.3"
  },
  "scripts": {
    "start": "tsx watch index.ts",
    "start:prod": "tsx index.ts",
    "lint": "eslint .",
    "format": "prettier . --ignore-path ../../.prettierignore",
    "typecheck": "tsc --noEmit"
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@hoarder/eslint-config/base"
    ]
  },
  "prettier": "@hoarder/prettier-config"
}