-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.16 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@happyvertical/spider",
"version": "0.60.9",
"description": "Lightweight web scraping and HTML content extraction using cheerio, happy-dom, and undici for high-performance server-side operations",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=24",
"pnpm": ">=9"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/happyvertical/spider.git"
},
"bugs": {
"url": "https://github.com/happyvertical/spider/issues"
},
"homepage": "https://github.com/happyvertical/spider#readme",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "vitest run --testTimeout 120000",
"test:watch": "vitest --testTimeout 120000",
"build": "vite build",
"build:watch": "vite build --watch",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"format": "biome format --write src/",
"clean": "rm -rf dist *.tsbuildinfo",
"dev": "npm run build:watch & npm run test:watch",
"changeset": "changeset",
"changeset:auto": "npx tsx scripts/auto-changeset.ts",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"prepare": "lefthook install"
},
"dependencies": {
"@happyvertical/cache": "^0.68.0",
"@happyvertical/files": "^0.68.0",
"@happyvertical/utils": "^0.68.0",
"@mozilla/readability": "^0.6.0",
"cheerio": "^1.1.2",
"crawlee": "^3.15.2",
"happy-dom": "^20.0.10",
"jsdom": "27.4.0",
"playwright": "^1.56.1",
"undici": "^7.16.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "24.10.13",
"lefthook": "^2.0.0",
"tsx": "^4.20.0",
"typescript": "^5.9.3",
"vite": "7.3.1",
"vite-plugin-dts": "4.5.4",
"vitest": "^4.0.8"
}
}