-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.13 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
{
"name": "html-content-processor",
"version": "1.0.5",
"description": "A professional library for processing, cleaning, filtering, and converting HTML content to Markdown. Features advanced customization options, presets, plugin support, fluent API, and TypeScript integration for reliable content extraction.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && webpack --mode production",
"test": "npm run test:detection",
"test:detection": "node tests/test-detection-accuracy.js",
"test:detection:add": "node tests/test-detection-accuracy.js add",
"test:ci": "npm run build && npm run test:detection",
"test:url:manage": "node tests/test-url-manager.js",
"prepare": "npm run build",
"dev": "webpack serve --mode development",
"update-docs-version": "node scripts/update-docs-version.js",
"verify-version-sync": "node scripts/verify-version-sync.js",
"version": "npm run update-docs-version && git add .",
"preversion": "npm run verify-version-sync",
"postversion": "npm run update-docs-version && npm run build"
},
"keywords": [
"html",
"markdown",
"content-filter",
"html-processor",
"content-extraction",
"html-to-markdown",
"typescript",
"page-type-detection",
"cross-environment",
"web-scraping",
"content-cleaning",
"modern-api",
"html-filter",
"content-converter",
"smart-filtering"
],
"author": "HTML Filter Strategy Team",
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.5.0",
"typescript": "^4.9.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"optionalDependencies": {
"jsdom": "^26.1.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kamjin3086/html-content-processor.git"
},
"bugs": {
"url": "https://github.com/kamjin3086/html-content-processor/issues"
},
"homepage": "https://github.com/kamjin3086/html-content-processor#readme",
"engines": {
"node": ">=14.0.0"
}
}