@arcjet/analyze 1.0.0-beta.16 → 1.0.0-beta.18
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 +9 -9
package/README.md
CHANGED
|
@@ -31,9 +31,7 @@ This package provides functionality to analyze requests.
|
|
|
31
31
|
The work is done in WebAssembly but is called here from JavaScript.
|
|
32
32
|
The functionality is wrapped up into rules in our core package
|
|
33
33
|
([`arcjet`][github-arcjet-arcjet]),
|
|
34
|
-
in turn exposed from our
|
|
35
|
-
|
|
36
|
-
<!-- TODO(@wooorm-arcjet): link `adapters` above when the main repo is up to date. -->
|
|
34
|
+
in turn exposed from our [SDKs][github-arcjet-sdks] (such as `@arcjet/next`).
|
|
37
35
|
|
|
38
36
|
The WebAssembly files are in
|
|
39
37
|
[`@arcjet/analyze-wasm`][github-arcjet-analyze-wasm].
|
|
@@ -90,3 +88,4 @@ console.log(result);
|
|
|
90
88
|
[apache-license]: http://www.apache.org/licenses/LICENSE-2.0
|
|
91
89
|
[github-arcjet-analyze-wasm]: https://github.com/arcjet/arcjet-js/tree/main/analyze-wasm
|
|
92
90
|
[github-arcjet-arcjet]: https://github.com/arcjet/arcjet-js/tree/main/arcjet
|
|
91
|
+
[github-arcjet-sdks]: https://github.com/arcjet/arcjet-js#sdks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcjet/analyze",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.18",
|
|
4
4
|
"description": "Arcjet local analysis engine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"analyze",
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"build": "rollup --config rollup.config.js",
|
|
41
41
|
"lint": "eslint .",
|
|
42
42
|
"prepublishOnly": "npm run build",
|
|
43
|
-
"test-api": "node --test",
|
|
44
|
-
"test-coverage": "node --experimental-test-coverage --test",
|
|
43
|
+
"test-api": "node --test -- test/*.test.js",
|
|
44
|
+
"test-coverage": "node --experimental-test-coverage --test -- test/*.test.js",
|
|
45
45
|
"test": "npm run build && npm run lint && npm run test-coverage"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@arcjet/analyze-wasm": "1.0.0-beta.
|
|
49
|
-
"@arcjet/protocol": "1.0.0-beta.
|
|
48
|
+
"@arcjet/analyze-wasm": "1.0.0-beta.18",
|
|
49
|
+
"@arcjet/protocol": "1.0.0-beta.18"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@arcjet/eslint-config": "1.0.0-beta.
|
|
53
|
-
"@arcjet/rollup-config": "1.0.0-beta.
|
|
52
|
+
"@arcjet/eslint-config": "1.0.0-beta.18",
|
|
53
|
+
"@arcjet/rollup-config": "1.0.0-beta.18",
|
|
54
54
|
"@bytecodealliance/jco": "1.5.0",
|
|
55
|
-
"@rollup/wasm-node": "4.
|
|
56
|
-
"@types/node": "25.0.
|
|
55
|
+
"@rollup/wasm-node": "4.55.1",
|
|
56
|
+
"@types/node": "25.0.8",
|
|
57
57
|
"eslint": "9.39.2",
|
|
58
58
|
"typescript": "5.9.3"
|
|
59
59
|
},
|