@arcjet/astro 1.5.0 → 1.6.1
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 -2
- package/internal.js +1 -1
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -31,9 +31,9 @@ an HTTP request), see [`@arcjet/guard`](https://github.com/arcjet/arcjet-js/tree
|
|
|
31
31
|
```sh
|
|
32
32
|
npx @arcjet/cli auth login
|
|
33
33
|
```
|
|
34
|
-
2. Install the
|
|
34
|
+
2. Install the Arcjet skill to give your coding agent the docs it needs:
|
|
35
35
|
```sh
|
|
36
|
-
npx skills add arcjet/skills
|
|
36
|
+
npx skills add arcjet/skills
|
|
37
37
|
```
|
|
38
38
|
3. Tell your agent what to protect — it handles the rest.
|
|
39
39
|
|
package/internal.js
CHANGED
|
@@ -40,7 +40,7 @@ function createRemoteClient(options) {
|
|
|
40
40
|
// Transport is the HTTP client that the client uses to make requests.
|
|
41
41
|
const transport = createTransport(url);
|
|
42
42
|
const sdkStack = "ASTRO";
|
|
43
|
-
const sdkVersion = "1.
|
|
43
|
+
const sdkVersion = "1.6.1";
|
|
44
44
|
return createClient({
|
|
45
45
|
transport,
|
|
46
46
|
baseUrl: url,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcjet/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "Arcjet runtime security SDK for Astro — bot protection, rate limiting, prompt injection detection, PII blocking, and WAF",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -58,23 +58,23 @@
|
|
|
58
58
|
"test": "npm run build && npm run lint && npm run test-coverage"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@arcjet/body": "1.
|
|
62
|
-
"@arcjet/env": "1.
|
|
63
|
-
"@arcjet/headers": "1.
|
|
64
|
-
"@arcjet/ip": "1.
|
|
65
|
-
"@arcjet/logger": "1.
|
|
66
|
-
"@arcjet/protocol": "1.
|
|
67
|
-
"@arcjet/transport": "1.
|
|
68
|
-
"arcjet": "1.
|
|
61
|
+
"@arcjet/body": "1.6.1",
|
|
62
|
+
"@arcjet/env": "1.6.1",
|
|
63
|
+
"@arcjet/headers": "1.6.1",
|
|
64
|
+
"@arcjet/ip": "1.6.1",
|
|
65
|
+
"@arcjet/logger": "1.6.1",
|
|
66
|
+
"@arcjet/protocol": "1.6.1",
|
|
67
|
+
"@arcjet/transport": "1.6.1",
|
|
68
|
+
"arcjet": "1.6.1"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
|
-
"astro": "^5.9.3 || ^6.0.0"
|
|
71
|
+
"astro": "^5.9.3 || ^6.0.0 || ^7.0.0"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@arcjet/eslint-config": "1.
|
|
75
|
-
"@arcjet/rollup-config": "1.
|
|
76
|
-
"@rollup/wasm-node": "4.
|
|
77
|
-
"astro": "
|
|
74
|
+
"@arcjet/eslint-config": "1.6.1",
|
|
75
|
+
"@arcjet/rollup-config": "1.6.1",
|
|
76
|
+
"@rollup/wasm-node": "4.62.2",
|
|
77
|
+
"astro": "7.0.3",
|
|
78
78
|
"eslint": "9.39.4",
|
|
79
79
|
"typescript": "5.9.3"
|
|
80
80
|
},
|