@kreuzberg/kreuzcrawl 0.1.0-rc.2

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.
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@kreuzberg/kreuzcrawl-linux-x64-gnu",
3
+ "version": "0.1.0-rc.2",
4
+ "cpu": [
5
+ "x64"
6
+ ],
7
+ "main": "kreuzcrawl-node.linux-x64-gnu.node",
8
+ "files": [
9
+ "kreuzcrawl-node.linux-x64-gnu.node"
10
+ ],
11
+ "license": "Elastic-2.0",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/kreuzberg-dev/kreuzcrawl.git"
15
+ },
16
+ "os": [
17
+ "linux"
18
+ ],
19
+ "libc": [
20
+ "glibc"
21
+ ]
22
+ }
@@ -0,0 +1,3 @@
1
+ # `@kreuzberg/kreuzcrawl-win32-x64-msvc`
2
+
3
+ This is the **x86_64-pc-windows-msvc** binary for `@kreuzberg/kreuzcrawl`
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@kreuzberg/kreuzcrawl-win32-x64-msvc",
3
+ "version": "0.1.0-rc.2",
4
+ "cpu": [
5
+ "x64"
6
+ ],
7
+ "main": "kreuzcrawl-node.win32-x64-msvc.node",
8
+ "files": [
9
+ "kreuzcrawl-node.win32-x64-msvc.node"
10
+ ],
11
+ "license": "Elastic-2.0",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/kreuzberg-dev/kreuzcrawl.git"
15
+ },
16
+ "os": [
17
+ "win32"
18
+ ]
19
+ }
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@kreuzberg/kreuzcrawl",
3
+ "version": "0.1.0-rc.2",
4
+ "main": "index.js",
5
+ "types": "index.d.ts",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/kreuzberg-dev/kreuzcrawl.git"
9
+ },
10
+ "license": "Elastic-2.0",
11
+ "napi": {
12
+ "binaryName": "kreuzcrawl-node",
13
+ "package": {
14
+ "name": "@kreuzberg/kreuzcrawl"
15
+ },
16
+ "targets": [
17
+ "aarch64-apple-darwin",
18
+ "aarch64-unknown-linux-gnu",
19
+ "aarch64-unknown-linux-musl",
20
+ "x86_64-pc-windows-msvc",
21
+ "x86_64-unknown-linux-gnu",
22
+ "x86_64-unknown-linux-musl"
23
+ ]
24
+ },
25
+ "scripts": {
26
+ "artifacts": "napi artifacts",
27
+ "build": "napi build --platform --release",
28
+ "build:debug": "napi build --platform",
29
+ "build:ts": "echo 'No TypeScript wrapper layer — using NAPI-RS generated bindings directly'",
30
+ "prepublishOnly": "napi prepublish -t npm",
31
+ "universal": "napi universal",
32
+ "version": "napi version"
33
+ },
34
+ "devDependencies": {
35
+ "@napi-rs/cli": "^3.6.2"
36
+ },
37
+ "optionalDependencies": {
38
+ "@kreuzberg/kreuzcrawl-darwin-arm64": "0.1.0-rc.2",
39
+ "@kreuzberg/kreuzcrawl-linux-arm64-gnu": "0.1.0-rc.2",
40
+ "@kreuzberg/kreuzcrawl-linux-x64-gnu": "0.1.0-rc.2",
41
+ "@kreuzberg/kreuzcrawl-win32-x64-msvc": "0.1.0-rc.2"
42
+ }
43
+ }