elasticlink 0.6.0-beta → 0.7.0-beta

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,6 +1,6 @@
1
1
  {
2
2
  "name": "elasticlink",
3
- "version": "0.6.0-beta",
3
+ "version": "0.7.0-beta",
4
4
  "description": "Type-safe, lightweight Elasticsearch query builder with fluent API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -24,9 +24,13 @@
24
24
  "test:integration": "vitest run --config vitest.integration.config.ts",
25
25
  "lint": "eslint src --ext .ts",
26
26
  "format": "prettier --write \"src/**/*.ts\"",
27
+ "format:check": "prettier --check \"src/**/*.ts\"",
27
28
  "audit": "better-npm-audit audit --level=high",
28
29
  "prepublishOnly": "npm run build",
29
- "type-check": "tsc --noEmit"
30
+ "type-check": "tsc --noEmit",
31
+ "depcheck": "depcheck",
32
+ "jscpd": "jscpd src/ --min-lines 10 --min-tokens 100 --ignore \"**/__tests__/**\"",
33
+ "license-check": "license-checker --summary --onlyAllow 'MIT;MIT*;ISC;Apache-2.0;BSD-2-Clause;BSD-3-Clause;0BSD;CC0-1.0;CC-BY-3.0;Python-2.0;Unlicense;MPL-2.0;BlueOak-1.0.0;(MIT AND CC-BY-3.0);(WTFPL OR MIT)'"
30
34
  },
31
35
  "engines": {
32
36
  "node": ">=20.0.0"
@@ -35,7 +39,7 @@
35
39
  "type": "git",
36
40
  "url": "git+https://github.com/misterrodger/elasticlink.git"
37
41
  },
38
- "author": "misterrodger",
42
+ "author": "John Rodger",
39
43
  "license": "MIT",
40
44
  "bugs": {
41
45
  "url": "https://github.com/misterrodger/elasticlink/issues"
@@ -50,13 +54,11 @@
50
54
  "elastic",
51
55
  "search",
52
56
  "query-dsl",
53
- "query-builder",
54
57
  "fluent-api",
55
58
  "type-safety",
56
59
  "strongly-typed",
57
60
  "autocomplete",
58
61
  "elasticsearch-client",
59
- "query-dsl",
60
62
  "chain",
61
63
  "chainable"
62
64
  ],
@@ -64,20 +66,23 @@
64
66
  "@elastic/elasticsearch": ">=9.0.0"
65
67
  },
66
68
  "devDependencies": {
67
- "@elastic/elasticsearch": "^9.3.2",
69
+ "@elastic/elasticsearch": "^9.3.4",
68
70
  "@eslint/js": "^10.0.1",
69
- "@types/node": "^22",
70
- "@typescript-eslint/eslint-plugin": "^8.56.1",
71
- "@typescript-eslint/parser": "^8.56.1",
72
- "@vitest/coverage-v8": "^4.0.18",
73
- "@vitest/eslint-plugin": "^1.6.9",
71
+ "@types/node": "^24.12.0",
72
+ "@typescript-eslint/eslint-plugin": "^8.57.0",
73
+ "@typescript-eslint/parser": "^8.57.0",
74
+ "@vitest/coverage-v8": "^4.1.0",
75
+ "@vitest/eslint-plugin": "^1.6.12",
74
76
  "better-npm-audit": "^3.11.0",
75
- "eslint": "^10.0.2",
77
+ "depcheck": "^1.4.7",
78
+ "eslint": "^10.0.3",
76
79
  "eslint-plugin-functional": "^9.0.4",
77
- "globals": "^17.3.0",
80
+ "globals": "^17.4.0",
81
+ "jscpd": "^4.0.8",
82
+ "license-checker": "^25.0.1",
78
83
  "prettier": "^3.8.1",
79
84
  "typescript": "^5.9.3",
80
- "typescript-eslint": "^8.56.1",
81
- "vitest": "^4.0.18"
85
+ "typescript-eslint": "^8.57.0",
86
+ "vitest": "^4.1.0"
82
87
  }
83
88
  }