@arcjet/analyze-wasm 1.0.0-beta.16 → 1.0.0-beta.17
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/README.md +2 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -48,9 +48,7 @@ They are wrapped up into [`@arcjet/analyze`][github-arcjet-analyze] for use in
|
|
|
48
48
|
JavaScript,
|
|
49
49
|
in turn exposed in our core package
|
|
50
50
|
([`arcjet`][github-arcjet-arcjet])
|
|
51
|
-
and our
|
|
52
|
-
|
|
53
|
-
<!-- TODO(@wooorm-arcjet): link `adapters` above when the main repo is up to date. -->
|
|
51
|
+
and our [SDKs][github-arcjet-sdks] (such as `@arcjet/next`).
|
|
54
52
|
|
|
55
53
|
## When should I use this?
|
|
56
54
|
|
|
@@ -82,4 +80,5 @@ Use [`@arcjet/analyze`][file-analyze] instead.
|
|
|
82
80
|
[wasm-base64-blog]: https://blobfolio.com/2019/better-binary-batter-mixing-base64-and-uint8array/
|
|
83
81
|
[apache-license]: http://www.apache.org/licenses/LICENSE-2.0
|
|
84
82
|
[github-arcjet-analyze]: https://github.com/arcjet/arcjet-js/tree/main/analyze
|
|
83
|
+
[github-arcjet-sdks]: https://github.com/arcjet/arcjet-js#sdks
|
|
85
84
|
[tc39-proposal-import-bytes]: https://github.com/tc39/proposal-import-bytes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcjet/analyze-wasm",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.17",
|
|
4
4
|
"description": "WebAssembly bindings to Arcjet's local analysis engine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"analyze",
|
|
@@ -56,16 +56,16 @@
|
|
|
56
56
|
"build": "npm run build:jco && npm run build:rollup",
|
|
57
57
|
"lint": "eslint .",
|
|
58
58
|
"prepublishOnly": "npm run build",
|
|
59
|
-
"test-api": "node --test",
|
|
60
|
-
"test-coverage": "node --experimental-test-coverage --test",
|
|
59
|
+
"test-api": "node --test -- test/*.test.js",
|
|
60
|
+
"test-coverage": "node --experimental-test-coverage --test -- test/*.test.js",
|
|
61
61
|
"test": "npm run build && npm run lint && npm run test-coverage"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@arcjet/eslint-config": "1.0.0-beta.
|
|
66
|
-
"@arcjet/rollup-config": "1.0.0-beta.
|
|
65
|
+
"@arcjet/eslint-config": "1.0.0-beta.17",
|
|
66
|
+
"@arcjet/rollup-config": "1.0.0-beta.17",
|
|
67
67
|
"@bytecodealliance/jco": "1.5.0",
|
|
68
|
-
"@rollup/wasm-node": "4.
|
|
68
|
+
"@rollup/wasm-node": "4.55.1",
|
|
69
69
|
"@types/node": "25.0.3",
|
|
70
70
|
"eslint": "9.39.2",
|
|
71
71
|
"typescript": "5.9.3"
|