-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1 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
{
"name": "htmless",
"version": "1.0.0",
"packageManager": "pnpm@10.7.1",
"description": "CLI tool to clean and minify HTML by removing scripts, styles, and attributes — optimized for LLM input.",
"author": {
"name": "BroJor",
"url": "https://brojor.me"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/brojor/htmless.git"
},
"keywords": [
"html",
"clean",
"strip",
"cli",
"llm"
],
"main": "dist/index.js",
"bin": {
"htmless": "dist/index.js"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"commander": "^13.1.0",
"dom-serializer": "^2.0.0",
"htmlparser2": "^10.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@types/node": "^22.14.1",
"domhandler": "^5.0.3",
"eslint": "^9.24.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
}
}