@cipherstash/protect-ffi 0.23.0 → 0.24.0
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/dist/wasm/package.json +3 -0
- package/dist/wasm/protect_ffi.d.ts +83 -0
- package/dist/wasm/protect_ffi.js +9 -0
- package/dist/wasm/protect_ffi_bg.js +1047 -0
- package/dist/wasm/protect_ffi_bg.wasm +0 -0
- package/dist/wasm/protect_ffi_bg.wasm.d.ts +40 -0
- package/dist/wasm/protect_ffi_inline.js +16 -0
- package/package.json +36 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cipherstash/protect-ffi",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.cjs",
|
|
6
6
|
"scripts": {
|
|
@@ -26,25 +26,45 @@
|
|
|
26
26
|
"prepack": "tsc &&neon update",
|
|
27
27
|
"version": "neon bump --binaries platforms && git add .",
|
|
28
28
|
"release": "gh workflow run release.yml -f dryrun=false -f version=patch",
|
|
29
|
-
"dryrun": "gh workflow run publish.yml -f dryrun=true"
|
|
29
|
+
"dryrun": "gh workflow run publish.yml -f dryrun=true",
|
|
30
|
+
"build:wasm": "wasm-pack build crates/protect-ffi --target bundler --out-dir ../../dist/wasm --no-pack",
|
|
31
|
+
"postbuild:wasm": "node scripts/inline-wasm.mjs"
|
|
30
32
|
},
|
|
31
33
|
"author": "",
|
|
32
34
|
"license": "ISC",
|
|
33
35
|
"exports": {
|
|
34
36
|
".": {
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
|
|
37
|
+
"node": {
|
|
38
|
+
"import": {
|
|
39
|
+
"types": "./lib/index.d.mts",
|
|
40
|
+
"default": "./lib/index.mjs"
|
|
41
|
+
},
|
|
42
|
+
"require": {
|
|
43
|
+
"types": "./lib/index.d.cts",
|
|
44
|
+
"default": "./lib/index.cjs"
|
|
45
|
+
}
|
|
38
46
|
},
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
47
|
+
"default": "./dist/wasm/protect_ffi.js"
|
|
48
|
+
},
|
|
49
|
+
"./wasm": {
|
|
50
|
+
"types": "./dist/wasm/protect_ffi.d.ts",
|
|
51
|
+
"default": "./dist/wasm/protect_ffi.js"
|
|
52
|
+
},
|
|
53
|
+
"./wasm-inline": {
|
|
54
|
+
"types": "./dist/wasm/protect_ffi.d.ts",
|
|
55
|
+
"default": "./dist/wasm/protect_ffi_inline.js"
|
|
43
56
|
}
|
|
44
57
|
},
|
|
45
58
|
"types": "./lib/index.d.cts",
|
|
46
59
|
"files": [
|
|
47
|
-
"lib/**/*.?({c,m}){t,j}s"
|
|
60
|
+
"lib/**/*.?({c,m}){t,j}s",
|
|
61
|
+
"dist/wasm/package.json",
|
|
62
|
+
"dist/wasm/protect_ffi.js",
|
|
63
|
+
"dist/wasm/protect_ffi_bg.js",
|
|
64
|
+
"dist/wasm/protect_ffi_bg.wasm",
|
|
65
|
+
"dist/wasm/protect_ffi.d.ts",
|
|
66
|
+
"dist/wasm/protect_ffi_bg.wasm.d.ts",
|
|
67
|
+
"dist/wasm/protect_ffi_inline.js"
|
|
48
68
|
],
|
|
49
69
|
"neon": {
|
|
50
70
|
"type": "library",
|
|
@@ -75,11 +95,11 @@
|
|
|
75
95
|
"vite": "^8.0.5"
|
|
76
96
|
},
|
|
77
97
|
"optionalDependencies": {
|
|
78
|
-
"@cipherstash/protect-ffi-darwin-x64": "0.
|
|
79
|
-
"@cipherstash/protect-ffi-darwin-arm64": "0.
|
|
80
|
-
"@cipherstash/protect-ffi-win32-x64-msvc": "0.
|
|
81
|
-
"@cipherstash/protect-ffi-linux-x64-gnu": "0.
|
|
82
|
-
"@cipherstash/protect-ffi-linux-arm64-gnu": "0.
|
|
83
|
-
"@cipherstash/protect-ffi-linux-x64-musl": "0.
|
|
98
|
+
"@cipherstash/protect-ffi-darwin-x64": "0.24.0",
|
|
99
|
+
"@cipherstash/protect-ffi-darwin-arm64": "0.24.0",
|
|
100
|
+
"@cipherstash/protect-ffi-win32-x64-msvc": "0.24.0",
|
|
101
|
+
"@cipherstash/protect-ffi-linux-x64-gnu": "0.24.0",
|
|
102
|
+
"@cipherstash/protect-ffi-linux-arm64-gnu": "0.24.0",
|
|
103
|
+
"@cipherstash/protect-ffi-linux-x64-musl": "0.24.0"
|
|
84
104
|
}
|
|
85
105
|
}
|