@visulima/package 5.0.0 → 5.0.2

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/CHANGELOG.md +14 -0
  2. package/package.json +23 -23
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## @visulima/package [5.0.2](https://github.com/visulima/visulima/compare/%40visulima%2Fpackage%405.0.1...%40visulima%2Fpackage%405.0.2) (2026-07-15)
2
+
3
+
4
+ ### Dependencies
5
+
6
+ * **@visulima/fs:** upgraded to 5.0.2
7
+
8
+ ## @visulima/package [5.0.1](https://github.com/visulima/visulima/compare/%40visulima%2Fpackage%405.0.0...%40visulima%2Fpackage%405.0.1) (2026-07-15)
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * **@visulima/fs:** upgraded to 5.0.1
14
+
1
15
  ## @visulima/package [5.0.0](https://github.com/visulima/visulima/compare/@visulima/package@4.1.7...@visulima/package@5.0.0) (2026-07-03)
2
16
 
3
17
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/package",
3
- "version": "5.0.0",
3
+ "version": "5.0.2",
4
4
  "description": "A comprehensive package management utility that helps you find root directories, monorepos, package managers, and parse package.json, package.yaml, and package.json5 files with advanced features like catalog resolution.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -34,6 +34,11 @@
34
34
  ],
35
35
  "homepage": "https://visulima.com/packages/package/",
36
36
  "bugs": "https://github.com/visulima/visulima/issues",
37
+ "license": "MIT",
38
+ "author": {
39
+ "name": "Daniel Bannert",
40
+ "email": "d.bannert@anolilab.de"
41
+ },
37
42
  "repository": {
38
43
  "type": "git",
39
44
  "url": "git+https://github.com/visulima/visulima.git",
@@ -49,13 +54,19 @@
49
54
  "url": "https://anolilab.com/support"
50
55
  }
51
56
  ],
52
- "license": "MIT",
53
- "author": {
54
- "name": "Daniel Bannert",
55
- "email": "d.bannert@anolilab.de"
56
- },
57
- "sideEffects": false,
57
+ "files": [
58
+ "dist/**",
59
+ "README.md",
60
+ "CHANGELOG.md",
61
+ "LICENSE.md"
62
+ ],
63
+ "os": [
64
+ "darwin",
65
+ "linux",
66
+ "win32"
67
+ ],
58
68
  "type": "module",
69
+ "sideEffects": false,
59
70
  "exports": {
60
71
  ".": {
61
72
  "types": "./dist/index.d.ts",
@@ -91,15 +102,13 @@
91
102
  },
92
103
  "./package.json": "./package.json"
93
104
  },
94
- "files": [
95
- "dist/**",
96
- "README.md",
97
- "CHANGELOG.md",
98
- "LICENSE.md"
99
- ],
105
+ "publishConfig": {
106
+ "access": "public",
107
+ "provenance": true
108
+ },
100
109
  "dependencies": {
101
110
  "@antfu/install-pkg": "^1.1.0",
102
- "@visulima/fs": "5.0.0",
111
+ "@visulima/fs": "5.0.2",
103
112
  "@visulima/path": "3.0.0",
104
113
  "json5": "^2.2.3",
105
114
  "normalize-package-data": "^9.0.0",
@@ -107,14 +116,5 @@
107
116
  },
108
117
  "engines": {
109
118
  "node": "^22.14.0 || >=24.10.0"
110
- },
111
- "os": [
112
- "darwin",
113
- "linux",
114
- "win32"
115
- ],
116
- "publishConfig": {
117
- "access": "public",
118
- "provenance": true
119
119
  }
120
120
  }