-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 KB
/
package.json
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
{
"name": "rag-web-browser",
"version": "0.0.1",
"type": "module",
"description": "RAG Web Browser - run Google Search queries and extract content from the top search results.",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@crawlee/memory-storage": "^3.11.1",
"@modelcontextprotocol/sdk": "^1.0.4",
"@mozilla/readability": "^0.5.0",
"apify": "^3.2.6",
"cheerio": "^1.0.0-rc.12",
"crawlee": "^3.12.0",
"express": "^4.21.2",
"joplin-turndown-plugin-gfm": "^1.0.12",
"jsdom": "^24.1.1",
"playwright": "^1.47.0",
"turndown": "^7.2.0"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.3.0",
"@apify/tsconfig": "^0.1.0",
"@types/express": "^5.0.0",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/src/main.js",
"start:dev": "tsx src/main.ts",
"build": "tsc",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1"
},
"author": "Apify",
"license": "ISC"
}