@siteoshq/cli 2.4.0 → 2.5.0

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": "@siteoshq/cli",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "description": "One SiteOS CLI for Projects, Auth, Pulse, Cookie, Forms, Search, Trace, SEO/GEO, Analytics and Integrations.",
5
5
  "keywords": [
6
6
  "siteos",
@@ -33,22 +33,6 @@
33
33
  "dist",
34
34
  "README.md"
35
35
  ],
36
- "scripts": {
37
- "clean": "rm -rf dist .pack",
38
- "build": "pnpm run clean && tsup --config tsup.config.ts && chmod 755 dist/cli.js",
39
- "typecheck": "tsc --noEmit",
40
- "test": "vitest run",
41
- "test:process-e2e": "vitest run tests/cli-process.e2e.test.ts",
42
- "verify": "pnpm format:check && pnpm typecheck && pnpm test && pnpm build",
43
- "format": "prettier --write ./src",
44
- "format:check": "prettier --check ./src",
45
- "dev": "tsx src/cli.ts",
46
- "dev:watch": "tsup --config tsup.config.ts --watch",
47
- "pack:check": "pnpm pack --pack-destination .pack",
48
- "smoke:localhost": "vitest run tests/localhost.e2e.test.ts",
49
- "prepublishOnly": "pnpm run verify",
50
- "prepack": "pnpm run build"
51
- },
52
36
  "engines": {
53
37
  "node": ">=22"
54
38
  },
@@ -65,13 +49,27 @@
65
49
  "zod": "^3.25.76"
66
50
  },
67
51
  "devDependencies": {
68
- "@siteos/auth-contracts": "workspace:*",
69
52
  "@types/node": "^24.0.0",
70
53
  "execa": "^9.6.1",
71
54
  "prettier": "3.9.6",
72
55
  "tsup": "^8.5.0",
73
56
  "tsx": "^4.21.0",
74
57
  "typescript": "5.8.2",
75
- "vitest": "^3.2.3"
58
+ "vitest": "^3.2.3",
59
+ "@siteos/auth-contracts": "0.1.0"
60
+ },
61
+ "scripts": {
62
+ "clean": "rm -rf dist .pack",
63
+ "build": "pnpm run clean && tsup --config tsup.config.ts && chmod 755 dist/cli.js",
64
+ "typecheck": "tsc --noEmit",
65
+ "test": "vitest run",
66
+ "test:process-e2e": "vitest run tests/cli-process.e2e.test.ts",
67
+ "verify": "pnpm format:check && pnpm typecheck && pnpm test && pnpm build",
68
+ "format": "prettier --write ./src",
69
+ "format:check": "prettier --check ./src",
70
+ "dev": "tsx src/cli.ts",
71
+ "dev:watch": "tsup --config tsup.config.ts --watch",
72
+ "pack:check": "pnpm pack --pack-destination .pack",
73
+ "smoke:localhost": "vitest run tests/localhost.e2e.test.ts"
76
74
  }
77
- }
75
+ }