@fjell/cache 4.6.17 → 4.6.19

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 +1 -1
  2. package/package.json +23 -22
package/README.md CHANGED
@@ -20,7 +20,7 @@ Fjell Cache provides intelligent caching capabilities for complex data models an
20
20
  ```bash
21
21
  npm install @fjell/cache
22
22
  # or
23
- pnpm add @fjell/cache
23
+ npm install @fjell/cache
24
24
  # or
25
25
  yarn add @fjell/cache
26
26
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fjell/cache",
3
3
  "description": "Cache for Fjell",
4
- "version": "4.6.17",
4
+ "version": "4.6.19",
5
5
  "keywords": [
6
6
  "cache",
7
7
  "fjell"
@@ -16,17 +16,30 @@
16
16
  "import": "./dist/index.js"
17
17
  }
18
18
  },
19
+ "scripts": {
20
+ "dev": "concurrently \"tsc --noEmit --watch\" \"node build.js --watch\"",
21
+ "build": "npm run lint && tsc --noEmit && node build.js",
22
+ "typecheck": "tsc --noEmit",
23
+ "lint": "eslint . --ext .ts --fix",
24
+ "clean": "rimraf dist",
25
+ "test": "npm run lint && vitest run --coverage",
26
+ "prepublishOnly": "npm run clean && npm run build",
27
+ "docs:dev": "cd docs && npm run dev",
28
+ "docs:build": "cd docs && npm run build",
29
+ "docs:preview": "cd docs && npm run preview",
30
+ "docs:test": "cd docs && npm run test"
31
+ },
19
32
  "dependencies": {
20
- "@fjell/client-api": "^4.4.14",
21
- "@fjell/core": "^4.4.21",
22
- "@fjell/http-api": "^4.4.18",
23
- "@fjell/logging": "^4.4.25",
24
- "@fjell/registry": "^4.4.17"
33
+ "@fjell/client-api": "^4.4.15",
34
+ "@fjell/core": "^4.4.25",
35
+ "@fjell/http-api": "^4.4.23",
36
+ "@fjell/logging": "^4.4.30",
37
+ "@fjell/registry": "^4.4.20"
25
38
  },
26
39
  "devDependencies": {
27
40
  "@eslint/eslintrc": "^3.3.1",
28
- "@eslint/js": "^9.31.0",
29
- "@fjell/eslint-config": "^1.0.5",
41
+ "@eslint/js": "^9.32.0",
42
+ "@fjell/eslint-config": "^1.1.3",
30
43
  "@swc/core": "^1.13.2",
31
44
  "@tsconfig/recommended": "^1.0.10",
32
45
  "@types/multer": "^2.0.0",
@@ -37,7 +50,7 @@
37
50
  "@vitest/ui": "^3.2.4",
38
51
  "concurrently": "^9.2.0",
39
52
  "esbuild": "^0.25.8",
40
- "eslint": "^9.31.0",
53
+ "eslint": "^9.32.0",
41
54
  "nodemon": "^3.1.10",
42
55
  "rimraf": "^6.0.1",
43
56
  "ts-node": "^10.9.2",
@@ -48,17 +61,5 @@
48
61
  "repository": {
49
62
  "type": "git",
50
63
  "url": "git+https://github.com/getfjell/cache.git"
51
- },
52
- "scripts": {
53
- "dev": "concurrently \"tsc --noEmit --watch\" \"node build.js --watch\"",
54
- "build": "pnpm run lint && tsc --noEmit && node build.js",
55
- "typecheck": "tsc --noEmit",
56
- "lint": "eslint . --ext .ts --fix",
57
- "clean": "rimraf dist",
58
- "test": "pnpm run lint && vitest run --coverage",
59
- "docs:dev": "cd docs && npm run dev",
60
- "docs:build": "cd docs && npm run build",
61
- "docs:preview": "cd docs && npm run preview",
62
- "docs:test": "cd docs && npm run test"
63
64
  }
64
- }
65
+ }