-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "youtube-autocomplete-scraper",
"private": true,
"version": "0.0.1",
"type": "module",
"description": "An Apify actor for scraping YouTube's autocomplete suggestions with intelligent deduplication using pglite",
"keywords": [
"youtube",
"autocomplete",
"suggestions",
"scraper",
"apify",
"actor",
"deduplication",
"pglite",
"trigram",
"similarity",
"search",
"youtube-api",
"crawler"
],
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"tshy": {
"dialects": [
"esm"
],
"exports": {
"./package.json": "./package.json",
".": "./src/main.ts"
}
},
"scripts": {
"start": "corepack pnpm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "tsx src/main.ts",
"build": "tsup",
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1",
"format": "dprint fmt",
"postinstall": "npx crawlee install-playwright-browsers"
},
"dependencies": {
"@effect/platform": "^0.75.4",
"@effect/platform-node": "^0.71.4",
"@electric-sql/pglite": "^0.2.16",
"apify": "^3.3.0",
"crawlee": "^3.12.2",
"effect": "^3.12.10",
"playwright": "*"
},
"devDependencies": {
"@total-typescript/tsconfig": "^1.0.4",
"dprint": "^0.49.0",
"tsup": "^8.3.6",
"tsx": "^4.6.2",
"turbo": "^2.4.0",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}