-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) 路 1.44 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) 路 1.44 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
{
"name": "html2any",
"version": "0.2.1",
"description": "understand html with flexible transform",
"keywords": [
"html",
"parser",
"transform",
"html-transform",
"html-parser"
],
"homepage": "https://github.com/huozhi/html2any#readme",
"bugs": {
"url": "https://github.com/huozhi/html2any/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/huozhi/html2any"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"html2any": "dist/bin/html2any.js",
"html2": "dist/bin/html2.js"
},
"scripts": {
"test": "bun test",
"typecheck": "tsgo --noEmit",
"benchmark": "bun benchmark/run.mjs",
"benchmark:url": "bun benchmark/compare-url.mjs",
"build": "bunchee",
"prepublishOnly": "bun run build",
"web:dev": "next dev web",
"web:build": "next build web",
"web:check-load": "node web/scripts/check-load.mjs",
"web:start": "next start web"
},
"files": [
"dist"
],
"author": "huozhi",
"license": "MIT",
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "^7.0.0-dev.20260523.1",
"bunchee": "^7.0.1",
"next": "^16.3.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"sugar-high": "^1.2.0",
"tailwindcss": "^4.3.0"
}
}