@saga-ai/cli 0.1.2 → 0.1.3

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/cli.cjs +0 -0
  2. package/package.json +11 -10
package/dist/cli.cjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,12 +1,20 @@
1
1
  {
2
2
  "name": "@saga-ai/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
+ "packageManager": "pnpm@9.15.0",
4
5
  "description": "CLI for SAGA - Structured Autonomous Goal Achievement",
5
6
  "type": "module",
6
7
  "bin": {
7
8
  "saga": "./dist/cli.cjs"
8
9
  },
9
10
  "main": "./dist/cli.cjs",
11
+ "scripts": {
12
+ "build": "esbuild src/cli.ts --bundle --platform=node --outfile=dist/cli.cjs --format=cjs --banner:js='#!/usr/bin/env node'",
13
+ "dev": "npm run build && node dist/cli.js",
14
+ "test": "vitest run",
15
+ "test:watch": "vitest",
16
+ "publish:npm": "pnpm build && pnpm test && pnpm publish --access public"
17
+ },
10
18
  "keywords": [
11
19
  "claude",
12
20
  "saga",
@@ -37,12 +45,5 @@
37
45
  "files": [
38
46
  "dist/",
39
47
  "README.md"
40
- ],
41
- "scripts": {
42
- "build": "esbuild src/cli.ts --bundle --platform=node --outfile=dist/cli.cjs --format=cjs --banner:js='#!/usr/bin/env node'",
43
- "dev": "npm run build && node dist/cli.js",
44
- "test": "vitest run",
45
- "test:watch": "vitest",
46
- "publish:npm": "pnpm build && pnpm test && pnpm publish --access public"
47
- }
48
- }
48
+ ]
49
+ }