@arcis/node 1.6.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arcis/node",
3
- "version": "1.6.0",
4
- "description": "Inside-the-app security middleware for Node.js. One install protects Express, NestJS, SvelteKit, Astro, Nuxt, Bun, Hono, Fastify, Koa, and Next.js against XSS, SQL injection, CSRF, SSRF, HPP, prompt injection, bot traffic, rate limiting, and 20+ more attack types. v1.6 ships interactive REPL, NFKC + multi-decode hardening, deserialization markers (V33), GraphQL alias-bomb guard (V34), and a stateful per-IP correlation window. Includes prompt-injection signature library, LLM token-budget middleware, 635-pattern bot corpus, and the @arcis/cli native CLI.",
3
+ "version": "1.6.1",
4
+ "description": "Inside-the-app security middleware for Node.js. Express and NestJS run the full sanitizer pipeline (XSS, SQL, NoSQL, SSTI, XXE, path, command, prompt injection, prototype pollution, LDAP, XPath, header injection, plus 20+ more attack types). Fastify, Koa, Hono, Next.js, SvelteKit, Astro, Nuxt, and Bun ship rate-limit + bot detection + security headers as v1 adapters; pair them with `sanitizeObject` from @arcis/node/sanitizers for body inspection. v1.6 ships interactive REPL, NFKC + multi-decode hardening, deserialization markers (V33), GraphQL alias-bomb guard (V34), and a stateful per-IP correlation window. Includes prompt-injection signature library, LLM token-budget middleware, 635-pattern bot corpus, and the @arcis/cli native CLI.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
@@ -52,47 +52,47 @@
52
52
  "require": "./dist/telemetry/index.js"
53
53
  },
54
54
  "./fastify": {
55
- "types": "./dist/fastify/index.d.ts",
55
+ "types": "./dist/middleware/fastify.d.ts",
56
56
  "import": "./dist/fastify/index.mjs",
57
57
  "require": "./dist/fastify/index.js"
58
58
  },
59
59
  "./koa": {
60
- "types": "./dist/koa/index.d.ts",
60
+ "types": "./dist/middleware/koa.d.ts",
61
61
  "import": "./dist/koa/index.mjs",
62
62
  "require": "./dist/koa/index.js"
63
63
  },
64
64
  "./nestjs": {
65
- "types": "./dist/nestjs/index.d.ts",
65
+ "types": "./dist/middleware/nestjs.d.ts",
66
66
  "import": "./dist/nestjs/index.mjs",
67
67
  "require": "./dist/nestjs/index.js"
68
68
  },
69
69
  "./nextjs": {
70
- "types": "./dist/nextjs/index.d.ts",
70
+ "types": "./dist/middleware/nextjs.d.ts",
71
71
  "import": "./dist/nextjs/index.mjs",
72
72
  "require": "./dist/nextjs/index.js"
73
73
  },
74
74
  "./sveltekit": {
75
- "types": "./dist/sveltekit/index.d.ts",
75
+ "types": "./dist/middleware/sveltekit.d.ts",
76
76
  "import": "./dist/sveltekit/index.mjs",
77
77
  "require": "./dist/sveltekit/index.js"
78
78
  },
79
79
  "./astro": {
80
- "types": "./dist/astro/index.d.ts",
80
+ "types": "./dist/middleware/astro.d.ts",
81
81
  "import": "./dist/astro/index.mjs",
82
82
  "require": "./dist/astro/index.js"
83
83
  },
84
84
  "./nuxt": {
85
- "types": "./dist/nuxt/index.d.ts",
85
+ "types": "./dist/middleware/nuxt.d.ts",
86
86
  "import": "./dist/nuxt/index.mjs",
87
87
  "require": "./dist/nuxt/index.js"
88
88
  },
89
89
  "./bun": {
90
- "types": "./dist/bun/index.d.ts",
90
+ "types": "./dist/middleware/bun.d.ts",
91
91
  "import": "./dist/bun/index.mjs",
92
92
  "require": "./dist/bun/index.js"
93
93
  },
94
94
  "./hono": {
95
- "types": "./dist/hono/index.d.ts",
95
+ "types": "./dist/middleware/hono.d.ts",
96
96
  "import": "./dist/hono/index.mjs",
97
97
  "require": "./dist/hono/index.js"
98
98
  }