@visulima/package 5.0.0-alpha.23 → 5.0.0-alpha.25

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 +23 -0
  2. package/package.json +23 -23
package/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ ## @visulima/package [5.0.0-alpha.25](https://github.com/visulima/visulima/compare/@visulima/package@5.0.0-alpha.24...@visulima/package@5.0.0-alpha.25) (2026-05-26)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **ci-stability:** green CI across vis, native, lint, tests, attw ([#651](https://github.com/visulima/visulima/issues/651)) ([d4eb684](https://github.com/visulima/visulima/commit/d4eb684b5f75c818c9251048c605a0ed54a268e3))
6
+ * **repo:** sort package.json keys across all packages ([e1fd9ab](https://github.com/visulima/visulima/commit/e1fd9ab467ef96a98c777da1572ff6a50fcf7e71))
7
+
8
+ ### Tests
9
+
10
+ * **repo:** add dist runtime + types integration tests ([32ee300](https://github.com/visulima/visulima/commit/32ee300b7184117a0ddf9f9d390f75f8932d5ed9))
11
+
12
+
13
+ ### Dependencies
14
+
15
+ * **@visulima/fs:** upgraded to 5.0.0-alpha.26
16
+
17
+ ## @visulima/package [5.0.0-alpha.24](https://github.com/visulima/visulima/compare/@visulima/package@5.0.0-alpha.23...@visulima/package@5.0.0-alpha.24) (2026-05-20)
18
+
19
+
20
+ ### Dependencies
21
+
22
+ * **@visulima/fs:** upgraded to 5.0.0-alpha.25
23
+
1
24
  ## @visulima/package [5.0.0-alpha.23](https://github.com/visulima/visulima/compare/@visulima/package@5.0.0-alpha.22...@visulima/package@5.0.0-alpha.23) (2026-05-19)
2
25
 
3
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/package",
3
- "version": "5.0.0-alpha.23",
3
+ "version": "5.0.0-alpha.25",
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",
@@ -36,11 +36,6 @@
36
36
  "bugs": {
37
37
  "url": "https://github.com/visulima/visulima/issues"
38
38
  },
39
- "license": "MIT",
40
- "author": {
41
- "name": "Daniel Bannert",
42
- "email": "d.bannert@anolilab.de"
43
- },
44
39
  "repository": {
45
40
  "type": "git",
46
41
  "url": "git+https://github.com/visulima/visulima.git",
@@ -56,19 +51,13 @@
56
51
  "url": "https://anolilab.com/support"
57
52
  }
58
53
  ],
59
- "files": [
60
- "dist/**",
61
- "README.md",
62
- "CHANGELOG.md",
63
- "LICENSE.md"
64
- ],
65
- "os": [
66
- "darwin",
67
- "linux",
68
- "win32"
69
- ],
70
- "type": "module",
54
+ "license": "MIT",
55
+ "author": {
56
+ "name": "Daniel Bannert",
57
+ "email": "d.bannert@anolilab.de"
58
+ },
71
59
  "sideEffects": false,
60
+ "type": "module",
72
61
  "exports": {
73
62
  ".": {
74
63
  "types": "./dist/index.d.ts",
@@ -104,13 +93,15 @@
104
93
  },
105
94
  "./package.json": "./package.json"
106
95
  },
107
- "publishConfig": {
108
- "access": "public",
109
- "provenance": true
110
- },
96
+ "files": [
97
+ "dist/**",
98
+ "README.md",
99
+ "CHANGELOG.md",
100
+ "LICENSE.md"
101
+ ],
111
102
  "dependencies": {
112
103
  "@antfu/install-pkg": "^1.1.0",
113
- "@visulima/fs": "5.0.0-alpha.24",
104
+ "@visulima/fs": "5.0.0-alpha.26",
114
105
  "@visulima/path": "3.0.0-alpha.10",
115
106
  "json5": "^2.2.3",
116
107
  "normalize-package-data": "^9.0.0",
@@ -118,5 +109,14 @@
118
109
  },
119
110
  "engines": {
120
111
  "node": "^22.14.0 || >=24.10.0"
112
+ },
113
+ "os": [
114
+ "darwin",
115
+ "linux",
116
+ "win32"
117
+ ],
118
+ "publishConfig": {
119
+ "access": "public",
120
+ "provenance": true
121
121
  }
122
122
  }