@akropolys/cli 1.6.1 → 1.6.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/dist/index.js +1 -1
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -212,7 +212,7 @@ async function runInspect(filePath, options) {
212
212
  // package.json
213
213
  var package_default = {
214
214
  name: "@akropolys/cli",
215
- version: "1.6.1",
215
+ version: "1.6.2",
216
216
  description: "Akropolys CLI \u2014 diagnostic, workspace setup, and payload inspection utility.",
217
217
  license: "MIT",
218
218
  publishConfig: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akropolys/cli",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Akropolys CLI — diagnostic, workspace setup, and payload inspection utility.",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -14,6 +14,10 @@
14
14
  "dist",
15
15
  "README.md"
16
16
  ],
17
+ "scripts": {
18
+ "build": "tsup",
19
+ "dev": "tsup --watch"
20
+ },
17
21
  "dependencies": {
18
22
  "commander": "^12.0.0",
19
23
  "picocolors": "^1.0.0"
@@ -22,9 +26,5 @@
22
26
  "tsup": "^8.0.0",
23
27
  "typescript": "^5.0.0",
24
28
  "@types/node": "^20.0.0"
25
- },
26
- "scripts": {
27
- "build": "tsup",
28
- "dev": "tsup --watch"
29
29
  }
30
- }
30
+ }