folder-pane 2.5.1-a0c75290 → 2.5.1-b014dfaf

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 (1) hide show
  1. package/package.json +9 -22
package/package.json CHANGED
@@ -1,17 +1,18 @@
1
1
  {
2
2
  "name": "folder-pane",
3
- "version": "2.5.1-a0c75290",
3
+ "version": "2.5.1-b014dfaf",
4
4
  "description": "Solid-compatible Panes: File browser",
5
5
  "main": "lib/folderPane.js",
6
6
  "scripts": {
7
7
  "clean": "rm -rf lib",
8
- "build": "npm run clean && tsc",
8
+ "build": "npm run clean && npm run typecheck && tsc",
9
9
  "lint": "eslint",
10
10
  "lint-fix": "eslint --fix",
11
+ "typecheck": "tsc --noEmit",
11
12
  "test": "echo \"No tests specified\" && exit 0",
12
13
  "ignore:prepublishOnly": "npm run build && npm run lint",
13
- "preversion": "npm run lint",
14
- "postversion": "git push origin main --follow-tags"
14
+ "preversion": "npm run typecheck && npm run lint",
15
+ "ignore:postpublish": "git push origin main --follow-tags"
15
16
  },
16
17
  "files": [
17
18
  "lib/",
@@ -20,7 +21,7 @@
20
21
  ],
21
22
  "repository": {
22
23
  "type": "git",
23
- "url": "https://github.com/solid/folder-pane"
24
+ "url": "git+https://github.com/solid/folder-pane.git"
24
25
  },
25
26
  "keywords": [
26
27
  "solid",
@@ -40,9 +41,9 @@
40
41
  "url": "https://github.com/solid/folder-pane/issues"
41
42
  },
42
43
  "homepage": "https://github.com/solid/folder-pane",
43
- "dependencies": {
44
- "solid-logic": "^3.1.1-da65b2c",
45
- "solid-ui": "^2.6.1-45faa7b"
44
+ "peerDependencies": {
45
+ "solid-logic": "3.1.1-a44ca66",
46
+ "solid-ui": "^2.6.1-e78cbe5"
46
47
  },
47
48
  "devDependencies": {
48
49
  "@babel/core": "^7.28.0",
@@ -51,23 +52,9 @@
51
52
  "@eslint/eslintrc": "^3.3.1",
52
53
  "@eslint/js": "^9.33.0",
53
54
  "@types/node": "^24.5.2",
54
- "@typescript-eslint/eslint-plugin": "^8.39.0",
55
55
  "@typescript-eslint/parser": "^8.39.0",
56
56
  "eslint": "^9.33.0",
57
57
  "globals": "^16.3.0",
58
- "husky": "^9.1.7",
59
- "lint-staged": "^16.2.6",
60
58
  "typescript": "^5.9.2"
61
- },
62
- "husky": {
63
- "hooks": {
64
- "pre-commit": "lint-staged",
65
- "pre-push": "npm test"
66
- }
67
- },
68
- "lint-staged": {
69
- "*.js": [
70
- "eslint"
71
- ]
72
59
  }
73
60
  }