-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 985 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 985 Bytes
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
{
"name": "@wrtnlabs/web-content-extractor",
"version": "3.2.4",
"description": "library for extracting content from HTML strings",
"type": "module",
"main": "./dist/lib.cjs",
"module": "./dist/lib.js",
"types": "./dist/lib.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "vitest",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wrtnlabs/web-content-extractor.git"
},
"keywords": [
"web"
],
"author": "Shrimp <shrimp@wrtn.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wrtnlabs/web-content-extractor/issues"
},
"homepage": "https://github.com/wrtnlabs/web-content-extractor#readme",
"devDependencies": {
"@types/node": "^22.13.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"dependencies": {
"cheerio": "^1.0.0",
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3"
}
}