@kreuzberg/html-to-markdown-node 2.19.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "@kreuzberg/html-to-markdown-node",
3
+ "version": "2.19.0-rc.1",
4
+ "description": "High-performance HTML to Markdown converter - Node.js native bindings",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "repository": "https://github.com/kreuzberg-dev/html-to-markdown",
8
+ "homepage": "https://github.com/kreuzberg-dev/html-to-markdown",
9
+ "license": "MIT",
10
+ "author": "Na'aman Hirschfeld <nhirschfeld@gmail.com>",
11
+ "bugs": "https://github.com/kreuzberg-dev/html-to-markdown/issues",
12
+ "keywords": [
13
+ "html",
14
+ "markdown",
15
+ "converter",
16
+ "rust",
17
+ "napi",
18
+ "native"
19
+ ],
20
+ "files": [
21
+ "index.js",
22
+ "*.cjs",
23
+ "*.d.ts",
24
+ "*.node",
25
+ "README.md"
26
+ ],
27
+ "napi": {
28
+ "binaryName": "html-to-markdown-node",
29
+ "targets": [
30
+ "x86_64-apple-darwin",
31
+ "aarch64-apple-darwin",
32
+ "x86_64-pc-windows-msvc",
33
+ "aarch64-pc-windows-msvc",
34
+ "x86_64-unknown-linux-gnu",
35
+ "x86_64-unknown-linux-musl",
36
+ "aarch64-unknown-linux-gnu",
37
+ "aarch64-unknown-linux-musl",
38
+ "armv7-unknown-linux-gnueabihf"
39
+ ]
40
+ },
41
+ "engines": {
42
+ "node": ">= 10"
43
+ },
44
+ "publishConfig": {
45
+ "registry": "https://registry.npmjs.org/",
46
+ "access": "public"
47
+ },
48
+ "scripts": {
49
+ "artifacts": "napi artifacts",
50
+ "build": "napi build --platform --release",
51
+ "build:debug": "napi build --platform",
52
+ "prepublishOnly": "napi prepublish -t npm",
53
+ "test": "vitest run",
54
+ "test:watch": "vitest",
55
+ "test:simple": "node test.js",
56
+ "universal": "napi universal",
57
+ "version": "napi version",
58
+ "clean": "rm -rf dist node_modules *.node"
59
+ },
60
+ "devDependencies": {
61
+ "@napi-rs/cli": "^3.5.0",
62
+ "@types/node": "^25.0.3",
63
+ "tsx": "^4.21.0",
64
+ "vitest": "^4.0.16"
65
+ },
66
+ "dependencies": {
67
+ "@emnapi/runtime": "1.7.1",
68
+ "@octokit/core": "7.0.6",
69
+ "typanion": "3.14.0",
70
+ "up": "^1.0.2"
71
+ },
72
+ "optionalDependencies": {
73
+ "@kreuzberg/html-to-markdown-node-darwin-x64": "2.19.0-rc.1",
74
+ "@kreuzberg/html-to-markdown-node-darwin-arm64": "2.19.0-rc.1",
75
+ "@kreuzberg/html-to-markdown-node-win32-x64-msvc": "2.19.0-rc.1",
76
+ "@kreuzberg/html-to-markdown-node-win32-arm64-msvc": "2.19.0-rc.1",
77
+ "@kreuzberg/html-to-markdown-node-linux-x64-gnu": "2.19.0-rc.1",
78
+ "@kreuzberg/html-to-markdown-node-linux-x64-musl": "2.19.0-rc.1",
79
+ "@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "2.19.0-rc.1",
80
+ "@kreuzberg/html-to-markdown-node-linux-arm64-musl": "2.19.0-rc.1",
81
+ "@kreuzberg/html-to-markdown-node-linux-arm-gnueabihf": "2.19.0-rc.1"
82
+ }
83
+ }