@klnap/next-proxy-chain 1.0.2 → 1.0.4

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,15 @@
1
1
  {
2
2
  "name": "@klnap/next-proxy-chain",
3
- "version": "1.0.2",
4
- "description": "Composable request-chaining and proxy engine for Next.js 15 (middleware.ts) and Next.js 16 (proxy.ts) with deterministic header mutation, isolated per-request context, and pure Web API core.",
3
+ "version": "1.0.4",
4
+ "description": "Composable request pipeline for Next.js middleware and proxy.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/klnap/next-proxy-chain.git"
8
+ },
9
+ "bugs": {
10
+ "url": "https://github.com/klnap/next-proxy-chain/issues"
11
+ },
12
+ "homepage": "https://github.com/klnap/next-proxy-chain#readme",
5
13
  "license": "MIT",
6
14
  "author": "klnap",
7
15
  "type": "module",
@@ -10,14 +18,20 @@
10
18
  "nextjs",
11
19
  "nextjs15",
12
20
  "nextjs16",
21
+ "next-proxy",
13
22
  "proxy",
23
+ "next-middleware",
14
24
  "middleware",
25
+ "middleware-chain",
26
+ "request-pipeline",
15
27
  "chain",
16
28
  "edge"
17
29
  ],
18
30
  "files": [
19
31
  "dist",
20
- "README.md"
32
+ "README.md",
33
+ "CHANGELOG.md",
34
+ "LICENSE"
21
35
  ],
22
36
  "exports": {
23
37
  ".": {
@@ -25,12 +39,6 @@
25
39
  "import": "./dist/index.js",
26
40
  "require": "./dist/index.cjs",
27
41
  "default": "./dist/index.js"
28
- },
29
- "./core": {
30
- "types": "./dist/index.d.ts",
31
- "import": "./dist/index.js",
32
- "require": "./dist/index.cjs",
33
- "default": "./dist/index.js"
34
42
  }
35
43
  },
36
44
  "main": "./dist/index.cjs",
@@ -44,7 +52,7 @@
44
52
  "typecheck": "tsc -p tsconfig.json",
45
53
  "test": "bun test",
46
54
  "test:watch": "bun test --watch",
47
- "clean": "rm -rf dist .turbo coverage",
55
+ "clean": "rm -rf dist coverage",
48
56
  "prepublishOnly": "bun run clean && bun run typecheck && bun test && bun run build"
49
57
  },
50
58
  "peerDependencies": {
@@ -55,8 +63,7 @@
55
63
  "@types/node": "^20",
56
64
  "next": "16.3.2",
57
65
  "tsup": "^8.4.0",
58
- "typescript": "^5",
59
- "vitest": "^4.1.11"
66
+ "typescript": "^5"
60
67
  },
61
68
  "engines": {
62
69
  "node": ">=20.0.0",