@trieb.work/nextjs-turbo-redis-cache 1.1.0 → 1.1.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.1.2](https://github.com/trieb-work/nextjs-turbo-redis-cache/compare/v1.1.1...v1.1.2) (2025-03-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Update package.json ([3775c36](https://github.com/trieb-work/nextjs-turbo-redis-cache/commit/3775c36f3c110686856f8644315ca6e02a3c483f))
7
+
8
+ ## [1.1.1](https://github.com/trieb-work/nextjs-turbo-redis-cache/compare/v1.1.0...v1.1.1) (2025-03-28)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Update package.json ([bf17b41](https://github.com/trieb-work/nextjs-turbo-redis-cache/commit/bf17b4186c8b7d94be83c61b5d4f8622ac7cf7f0))
14
+
1
15
  # [1.1.0](https://github.com/trieb-work/nextjs-turbo-redis-cache/compare/v1.0.0...v1.1.0) (2025-03-28)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "@trieb.work/nextjs-turbo-redis-cache",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/trieb-work/nextjs-turbo-redis-cache.git"
7
+ },
4
8
  "scripts": {
5
9
  "dev": "pnpm test",
6
10
  "build": "tsc",
@@ -11,8 +15,12 @@
11
15
  "prepare": "./scripts/prepare.sh"
12
16
  },
13
17
  "main": "dist/index.js",
14
- "type": "module",
15
18
  "types": "dist/index.d.ts",
19
+ "exports": {
20
+ "import": "./dist/index.js",
21
+ "require": "./dist/index.js"
22
+ },
23
+ "type": "commonjs",
16
24
  "keywords": [
17
25
  "nextjs",
18
26
  "redis",
package/tsconfig.json CHANGED
@@ -2,11 +2,15 @@
2
2
  "compilerOptions": {
3
3
  "target": "ES2020",
4
4
  "module": "CommonJS",
5
+ "moduleResolution": "Node",
5
6
  "strict": true,
6
7
  "esModuleInterop": true,
7
8
  "skipLibCheck": true,
8
9
  "declaration": true,
9
- "outDir": "dist"
10
+ "declarationDir": "dist",
11
+ "outDir": "dist",
12
+ "emitDeclarationOnly": false,
13
+ "resolveJsonModule": true
10
14
  },
11
15
  "include": ["src", "vitest.config.ts"],
12
16
  "exclude": ["node_modules", "dist"],