-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.26 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
47
48
49
50
{
"name": "scraper-than-openai",
"version": "0.0.1",
"type": "module",
"description": "This is an example of an Apify actor.",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@apify/scraper-tools": "^1.1.1",
"@crawlee/core": "^3.3.0",
"@crawlee/puppeteer": "^3.3.0",
"@crawlee/utils": "^3.3.0",
"apify": "^3.0.0",
"cheerio": "^1.0.0-rc.12",
"crawlee": "^3.0.0",
"gpt-3-encoder": "^1.1.4",
"html-to-text": "^9.0.5",
"joplin-turndown-plugin-gfm": "^1.0.12",
"openai": "^3.2.1",
"playwright": "*",
"turndown": "^7.1.2"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.2.3",
"@apify/tsconfig": "^0.1.0",
"@jest/globals": "^29.5.0",
"@types/html-to-text": "^9.0.0",
"@types/jest": "^29.5.0",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.20.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "ts-node-esm -T src/main.ts",
"build": "tsc",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"test": "jest"
},
"author": "It's not you it's me",
"license": "ISC"
}