pane-registry 2.4.27-21e7e7ab → 2.4.27-6ea02df8

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 +22 -0
  2. package/package.json +8 -8
@@ -0,0 +1,22 @@
1
+ import { defineConfig } from 'eslint/config'
2
+ import globals from 'globals'
3
+ import neostandard from 'neostandard'
4
+
5
+ export default defineConfig([
6
+ ...neostandard(),
7
+ {
8
+ languageOptions: {
9
+ globals: {
10
+ ...globals.browser,
11
+ ...globals.node
12
+ }
13
+ },
14
+
15
+ rules: {
16
+ 'no-unused-vars': ['warn', {
17
+ argsIgnorePattern: '^_',
18
+ varsIgnorePattern: '^_'
19
+ }]
20
+ }
21
+ }
22
+ ])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pane-registry",
3
- "version": "2.4.27-21e7e7ab",
3
+ "version": "2.4.27-6ea02df8",
4
4
  "description": "Solid-compatible Panes: Pane Registry",
5
5
  "main": "./paneRegistry.js",
6
6
  "types": "./index.d.ts",
@@ -8,7 +8,7 @@
8
8
  "build": "echo nothing to build",
9
9
  "lint": "eslint 'paneRegistry.js'",
10
10
  "lint-fix": "eslint 'paneRegistry.js' --fix",
11
- "test": "standard && npm run lint",
11
+ "test": "npm run lint",
12
12
  "ignore:prepublishOnly": "npm test",
13
13
  "postversion": "git push origin main --follow-tags"
14
14
  },
@@ -37,14 +37,14 @@
37
37
  },
38
38
  "homepage": "https://github.com/solidos/chat-pane",
39
39
  "dependencies": {
40
- "rdflib": "^2.2.36",
41
- "solid-logic": "^3.0.8"
40
+ "rdflib": "^2.2.37",
41
+ "solid-logic": "file:../solid-logic"
42
42
  },
43
43
  "devDependencies": {
44
- "eslint": "^8.57.0",
45
- "husky": "^8.0.3",
46
- "lint-staged": "^13.3.0",
47
- "standard": "^17.1.0"
44
+ "eslint": "^9.32.0",
45
+ "husky": "^9.1.7",
46
+ "lint-staged": "^16.1.2",
47
+ "neostandard": "^0.12.2"
48
48
  },
49
49
  "husky": {
50
50
  "hooks": {