@visulima/cerebro 3.0.0 → 3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/cerebro",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "A delightful toolkit for building cross-runtime CLIs for Node.js, Deno, and Bun.",
5
5
  "keywords": [
6
6
  "ansi",
@@ -33,6 +33,11 @@
33
33
  ],
34
34
  "homepage": "https://visulima.com/packages/cerebro",
35
35
  "bugs": "https://github.com/visulima/visulima/issues",
36
+ "license": "MIT",
37
+ "author": {
38
+ "name": "Daniel Bannert",
39
+ "email": "d.bannert@anolilab.de"
40
+ },
36
41
  "repository": {
37
42
  "type": "git",
38
43
  "url": "git+https://github.com/visulima/visulima.git",
@@ -48,13 +53,19 @@
48
53
  "url": "https://anolilab.com/support"
49
54
  }
50
55
  ],
51
- "license": "MIT",
52
- "author": {
53
- "name": "Daniel Bannert",
54
- "email": "d.bannert@anolilab.de"
55
- },
56
- "sideEffects": false,
56
+ "files": [
57
+ "dist",
58
+ "README.md",
59
+ "CHANGELOG.md",
60
+ "LICENSE.md"
61
+ ],
62
+ "os": [
63
+ "darwin",
64
+ "linux",
65
+ "win32"
66
+ ],
57
67
  "type": "module",
68
+ "sideEffects": false,
58
69
  "exports": {
59
70
  ".": {
60
71
  "types": "./dist/index.d.ts",
@@ -102,14 +113,12 @@
102
113
  },
103
114
  "./package.json": "./package.json"
104
115
  },
105
- "files": [
106
- "dist",
107
- "README.md",
108
- "CHANGELOG.md",
109
- "LICENSE.md"
110
- ],
116
+ "publishConfig": {
117
+ "access": "public",
118
+ "provenance": true
119
+ },
111
120
  "dependencies": {
112
- "@visulima/colorize": "2.0.0",
121
+ "@visulima/colorize": "2.0.1",
113
122
  "@visulima/tabular": "4.0.0",
114
123
  "fastest-levenshtein": "^1.0.16"
115
124
  },
@@ -117,7 +126,7 @@
117
126
  "@bomb.sh/tab": ">=0.0.16",
118
127
  "@visulima/boxen": "3.0.0",
119
128
  "@visulima/find-cache-dir": "3.0.0",
120
- "@visulima/pail": "4.0.0",
129
+ "@visulima/pail": "4.0.1",
121
130
  "github-slugger": ">=2.0.0"
122
131
  },
123
132
  "peerDependenciesMeta": {
@@ -139,14 +148,5 @@
139
148
  },
140
149
  "engines": {
141
150
  "node": "^22.14.0 || >=24.10.0"
142
- },
143
- "os": [
144
- "darwin",
145
- "linux",
146
- "win32"
147
- ],
148
- "publishConfig": {
149
- "access": "public",
150
- "provenance": true
151
151
  }
152
152
  }