-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.57 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.57 KB
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.94.1",
"@effect/platform-node": "^0.104.0",
"@electric-sql/pglite": "^0.3.14",
"apify": "^3.5.2",
"crawlee": "^3.15.3",
"effect": "^3.19.14",
"playwright": "*"
},
"devDependencies": {
"@total-typescript/tsconfig": "^1.0.4",
"dprint": "^0.51.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"turbo": "^2.7.2",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}