@spira-lab/cli 0.0.3 → 0.0.4

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.cjs +2 -2
  2. package/package.json +2 -25
package/dist/index.cjs CHANGED
@@ -22066,8 +22066,8 @@ function renderCommandIndex() {
22066
22066
  `;
22067
22067
  }
22068
22068
  async function packageVersion() {
22069
- if ("0.0.3".length > 0) {
22070
- return "0.0.3";
22069
+ if ("0.0.4".length > 0) {
22070
+ return "0.0.4";
22071
22071
  }
22072
22072
  try {
22073
22073
  const packageUrl = new URL("../package.json", import_meta.url);
package/package.json CHANGED
@@ -1,40 +1,17 @@
1
1
  {
2
2
  "name": "@spira-lab/cli",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Command line client for Spira.",
5
5
  "type": "module",
6
- "main": "./dist/index.cjs",
7
6
  "bin": {
8
7
  "spira": "dist/index.cjs"
9
8
  },
9
+ "main": "./dist/index.cjs",
10
10
  "engines": {
11
11
  "node": ">=20.0.0"
12
12
  },
13
13
  "publishConfig": {
14
14
  "access": "public",
15
15
  "registry": "https://registry.npmjs.org/"
16
- },
17
- "files": [
18
- "dist",
19
- "package.json",
20
- "README.md"
21
- ],
22
- "scripts": {
23
- "build": "pnpm --filter @spira-ai/contracts build && node scripts/build.mjs && node scripts/fix-bin-mode.mjs",
24
- "dev": "tsx src/index.ts",
25
- "publish:public": "node scripts/publish.mjs",
26
- "typecheck": "tsgo --noEmit -p tsconfig.json",
27
- "test": "vitest run"
28
- },
29
- "devDependencies": {
30
- "@typescript/native-preview": "catalog:",
31
- "@spira-ai/contracts": "workspace:*",
32
- "@types/node": "catalog:",
33
- "commander": "^14.0.2",
34
- "esbuild": "^0.27.1",
35
- "tsx": "^4.22.4",
36
- "typescript": "catalog:",
37
- "vitest": "catalog:",
38
- "zod": "catalog:"
39
16
  }
40
17
  }