@norriq/nuxt-api-proxy 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +6 -4
package/README.md CHANGED
@@ -31,3 +31,7 @@ All requests to `/api/proxy/*` are forwarded to the target API:
31
31
  - Multipart uploads are detected and forwarded as binary
32
32
  - JSON responses are parsed; binary responses are streamed through
33
33
  - `traceparent` header is forwarded for distributed tracing
34
+
35
+ ## License
36
+
37
+ Proprietary. Copyright (c) 2026 NORRIQ. All rights reserved. See [LICENSE](./LICENSE).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norriq/nuxt-api-proxy",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "exports": {
@@ -8,9 +8,11 @@
8
8
  },
9
9
  "files": [
10
10
  "nuxt.config.ts",
11
- "server"
11
+ "server",
12
+ "LICENSE"
12
13
  ],
13
14
  "devDependencies": {
15
+ "@vitest/coverage-v8": "^3.2.6",
14
16
  "vitest": "^3.2.4"
15
17
  },
16
18
  "license": "SEE LICENSE IN LICENSE",
@@ -18,8 +20,8 @@
18
20
  "access": "public"
19
21
  },
20
22
  "peerDependencies": {
21
- "nuxt": ">=3.0.0",
22
- "@sidebase/nuxt-auth": ">=1.0.0"
23
+ "@sidebase/nuxt-auth": ">=1.0.0",
24
+ "nuxt": ">=3.0.0"
23
25
  },
24
26
  "scripts": {
25
27
  "test": "vitest run"