@vulfram/transport-bun 0.22.3-alpha → 0.22.5-alpha

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,9 @@
1
+ {
2
+ "channel": "alpha",
3
+ "version": "0.22.5-alpha",
4
+ "binding": "ffi",
5
+ "platform": "linux-arm64",
6
+ "rust_target": "aarch64-unknown-linux-gnu",
7
+ "artifact": "vulfram_core.so",
8
+ "sha256": "a64ce48c321a99377933625c24e9f60fd0360e287046d177781f6e6895a538a3"
9
+ }
Binary file
@@ -0,0 +1 @@
1
+ a64ce48c321a99377933625c24e9f60fd0360e287046d177781f6e6895a538a3
@@ -0,0 +1,9 @@
1
+ {
2
+ "channel": "alpha",
3
+ "version": "0.22.5-alpha",
4
+ "binding": "ffi",
5
+ "platform": "linux-x64",
6
+ "rust_target": "x86_64-unknown-linux-gnu",
7
+ "artifact": "vulfram_core.so",
8
+ "sha256": "1f0bcc91061e52d6c1adb0ab8bffaa9269e746c233c85cdfd1b70daaf0a21973"
9
+ }
Binary file
@@ -0,0 +1 @@
1
+ 1f0bcc91061e52d6c1adb0ab8bffaa9269e746c233c85cdfd1b70daaf0a21973
@@ -0,0 +1,9 @@
1
+ {
2
+ "channel": "alpha",
3
+ "version": "0.22.5-alpha",
4
+ "binding": "ffi",
5
+ "platform": "macos-arm64",
6
+ "rust_target": "aarch64-apple-darwin",
7
+ "artifact": "vulfram_core.dylib",
8
+ "sha256": "4cf63d903780db955854c9359c3e52637388bf34b469a97bcff24355105acb70"
9
+ }
@@ -0,0 +1 @@
1
+ 4cf63d903780db955854c9359c3e52637388bf34b469a97bcff24355105acb70
@@ -0,0 +1,9 @@
1
+ {
2
+ "channel": "alpha",
3
+ "version": "0.22.5-alpha",
4
+ "binding": "ffi",
5
+ "platform": "macos-x64",
6
+ "rust_target": "x86_64-apple-darwin",
7
+ "artifact": "vulfram_core.dylib",
8
+ "sha256": "d02a26908e1443b6a1fbba2fd3a186c22345b936bcd7c9ab35054d59e60d4ff9"
9
+ }
@@ -0,0 +1 @@
1
+ d02a26908e1443b6a1fbba2fd3a186c22345b936bcd7c9ab35054d59e60d4ff9
@@ -0,0 +1,9 @@
1
+ {
2
+ "channel": "alpha",
3
+ "version": "0.22.5-alpha",
4
+ "binding": "ffi",
5
+ "platform": "windows-arm64",
6
+ "rust_target": "aarch64-pc-windows-msvc",
7
+ "artifact": "vulfram_core.dll",
8
+ "sha256": "7e472aedc804fc48a8be4dc0a9b9fbc7a7f9e27db6f90268cee5bc7190650e63"
9
+ }
@@ -0,0 +1 @@
1
+ 7e472aedc804fc48a8be4dc0a9b9fbc7a7f9e27db6f90268cee5bc7190650e63
@@ -0,0 +1,9 @@
1
+ {
2
+ "channel": "alpha",
3
+ "version": "0.22.5-alpha",
4
+ "binding": "ffi",
5
+ "platform": "windows-x64",
6
+ "rust_target": "x86_64-pc-windows-msvc",
7
+ "artifact": "vulfram_core.dll",
8
+ "sha256": "f24781c18d4c4d723112fb4f77771005ca63092927d251905d4ee9ae6ac99b66"
9
+ }
@@ -0,0 +1 @@
1
+ f24781c18d4c4d723112fb4f77771005ca63092927d251905d4ee9ae6ac99b66
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vulfram/transport-bun",
3
- "version": "0.22.3-alpha",
3
+ "version": "0.22.5-alpha",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -11,6 +11,11 @@
11
11
  "main": "src/index.ts",
12
12
  "types": "src/index.ts",
13
13
  "type": "module",
14
+ "files": [
15
+ "src",
16
+ "dist",
17
+ "README.md"
18
+ ],
14
19
  "publishConfig": {
15
20
  "access": "public"
16
21
  },
@@ -18,6 +23,6 @@
18
23
  "@vulfram/transport-types": "^0.3.0"
19
24
  },
20
25
  "devDependencies": {
21
- "@types/bun": "^1.3.10"
26
+ "@types/bun": "^1.3.11"
22
27
  }
23
28
  }
package/tsconfig.json DELETED
@@ -1,31 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- // Environment setup & latest features
4
- "lib": [
5
- "ESNext"
6
- ],
7
- "types": [
8
- "bun"
9
- ],
10
- "target": "ESNext",
11
- "module": "Preserve",
12
- "moduleDetection": "force",
13
- "jsx": "react-jsx",
14
- "allowJs": true,
15
- // Bundler mode
16
- "moduleResolution": "bundler",
17
- "allowImportingTsExtensions": true,
18
- "verbatimModuleSyntax": true,
19
- "noEmit": true,
20
- // Best practices
21
- "strict": true,
22
- "skipLibCheck": true,
23
- "noFallthroughCasesInSwitch": true,
24
- "noUncheckedIndexedAccess": true,
25
- "noImplicitOverride": true,
26
- // Some stricter flags (disabled by default)
27
- "noUnusedLocals": false,
28
- "noUnusedParameters": false,
29
- "noPropertyAccessFromIndexSignature": false
30
- }
31
- }