contacts-pane 2.6.13 → 2.7.0-5cbc3452

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/eslint.config.mjs +3 -2
  2. package/package.json +19 -18
package/eslint.config.mjs CHANGED
@@ -1,8 +1,9 @@
1
+ import { defineConfig } from "eslint/config";
1
2
  import typescriptEslint from "@typescript-eslint/eslint-plugin";
2
3
  import globals from "globals";
3
4
  import tsParser from "@typescript-eslint/parser";
4
5
 
5
- export default [{
6
+ export default defineConfig([{
6
7
  plugins: {
7
8
  "@typescript-eslint": typescriptEslint,
8
9
  },
@@ -24,4 +25,4 @@ export default [{
24
25
  varsIgnorePattern: "^_",
25
26
  }],
26
27
  },
27
- }];
28
+ }]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contacts-pane",
3
- "version": "2.6.13",
3
+ "version": "2.7.0-5cbc3452",
4
4
  "description": "Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.",
5
5
  "main": "./contactsPane.js",
6
6
  "scripts": {
@@ -38,27 +38,28 @@
38
38
  },
39
39
  "homepage": "https://github.com/solid/contacts-pane",
40
40
  "dependencies": {
41
- "solid-ui": "^2.5.1"
41
+ "solid-ui": "^2.6.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@babel/cli": "^7.26.4",
45
- "@babel/core": "^7.26.7",
46
- "@babel/preset-env": "^7.26.7",
47
- "@babel/preset-typescript": "^7.26.0",
48
- "@testing-library/jest-dom": "^6.6.3",
49
- "@types/jest": "^29.5.14",
50
- "@typescript-eslint/eslint-plugin": "^8.23.0",
51
- "@typescript-eslint/parser": "^8.23.0",
52
- "eslint": "^9.19.0",
53
- "eslint-plugin-import": "^2.31.0",
54
- "globals": "^15.14.0",
44
+ "@babel/cli": "^7.28.0",
45
+ "@babel/core": "^7.28.0",
46
+ "@babel/preset-env": "^7.28.0",
47
+ "@babel/preset-typescript": "^7.27.1",
48
+ "@testing-library/jest-dom": "^6.6.4",
49
+ "@types/jest": "^30.0.0",
50
+ "@typescript-eslint/eslint-plugin": "^8.39.0",
51
+ "@typescript-eslint/parser": "^8.39.0",
52
+ "babel-jest": "^30.0.5",
53
+ "eslint": "^9.33.0",
54
+ "eslint-plugin-import": "^2.32.0",
55
+ "globals": "^16.3.0",
55
56
  "husky": "^9.1.7",
56
- "jest": "^29.7.0",
57
- "jest-environment-jsdom": "^29.7.0",
57
+ "jest": "^30.0.5",
58
+ "jest-environment-jsdom": "^30.0.5",
58
59
  "jest-fetch-mock": "^3.0.3",
59
- "lint-staged": "^15.4.3",
60
- "typescript": "^5.7.3",
61
- "typescript-transpile-only": "0.0.4"
60
+ "lint-staged": "^16.1.5",
61
+ "typescript": "^5.9.2",
62
+ "typescript-transpile-only": "^0.0.4"
62
63
  },
63
64
  "husky": {
64
65
  "hooks": {