pane-registry 2.5.1-a36f51a → 2.5.1-dae58d5
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,20 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pane-registry",
|
|
3
|
-
"version": "2.5.1-
|
|
3
|
+
"version": "2.5.1-dae58d5",
|
|
4
4
|
"description": "Solid-compatible Panes: Pane Registry",
|
|
5
|
-
"main": "
|
|
6
|
-
"types": "
|
|
5
|
+
"main": "src/paneRegistry.js",
|
|
6
|
+
"types": "src/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"src/",
|
|
9
|
+
"README.md",
|
|
10
|
+
"LICENSE"
|
|
11
|
+
],
|
|
7
12
|
"scripts": {
|
|
8
13
|
"build": "echo nothing to build",
|
|
9
|
-
"lint": "eslint
|
|
10
|
-
"lint-fix": "eslint
|
|
14
|
+
"lint": "eslint",
|
|
15
|
+
"lint-fix": "eslint --fix",
|
|
11
16
|
"test": "npm run lint",
|
|
12
17
|
"ignore:prepublishOnly": "npm test",
|
|
18
|
+
"preversion": "npm run lint && npm run test",
|
|
13
19
|
"postversion": "git push origin main --follow-tags"
|
|
14
20
|
},
|
|
15
21
|
"repository": {
|
|
16
22
|
"type": "git",
|
|
17
|
-
"url": "https://github.com/solidos/pane-registry"
|
|
23
|
+
"url": "git+https://github.com/solidos/pane-registry.git"
|
|
18
24
|
},
|
|
19
25
|
"keywords": [
|
|
20
26
|
"solid",
|
|
@@ -36,25 +42,13 @@
|
|
|
36
42
|
"url": "https://github.com/solidos/chat-pane/issues"
|
|
37
43
|
},
|
|
38
44
|
"homepage": "https://github.com/solidos/chat-pane",
|
|
39
|
-
"
|
|
45
|
+
"peerDependencies": {
|
|
40
46
|
"rdflib": "^2.2.37",
|
|
41
|
-
"solid-logic": "
|
|
47
|
+
"solid-logic": "3.1.1-f480b7d"
|
|
42
48
|
},
|
|
43
49
|
"devDependencies": {
|
|
44
50
|
"eslint": "^9.32.0",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"neostandard": "^0.12.2"
|
|
48
|
-
},
|
|
49
|
-
"husky": {
|
|
50
|
-
"hooks": {
|
|
51
|
-
"pre-commit": "lint-staged",
|
|
52
|
-
"pre-push": "npm test"
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
"lint-staged": {
|
|
56
|
-
"*.js": [
|
|
57
|
-
"eslint"
|
|
58
|
-
]
|
|
51
|
+
"neostandard": "^0.12.2",
|
|
52
|
+
"solid-logic": "^3.1.1-f480b7d"
|
|
59
53
|
}
|
|
60
54
|
}
|
package/eslint.config.mjs
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import globals from 'globals'
|
|
2
|
-
import neostandard from 'neostandard'
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export default [
|
|
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
|
-
]
|
|
File without changes
|
|
File without changes
|