@siteoshq/cli 1.0.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 ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@siteoshq/cli",
3
+ "version": "1.0.0",
4
+ "description": "Unified SiteOS CLI for Auth, Pulse, Forms, and Search.",
5
+ "keywords": [
6
+ "siteos",
7
+ "cli",
8
+ "pulse",
9
+ "forms",
10
+ "search"
11
+ ],
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/pixel-point/siteos-platform.git",
15
+ "directory": "packages/cli"
16
+ },
17
+ "homepage": "https://github.com/pixel-point/siteos-platform/tree/main/packages/cli#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/pixel-point/siteos-platform/issues"
20
+ },
21
+ "type": "module",
22
+ "main": "dist/cli.js",
23
+ "bin": {
24
+ "siteos": "dist/cli.js"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md"
29
+ ],
30
+ "scripts": {
31
+ "clean": "rm -rf dist .pack",
32
+ "build": "pnpm run clean && tsup --config tsup.config.ts && chmod 755 dist/cli.js",
33
+ "typecheck": "tsc --noEmit",
34
+ "test": "vitest run",
35
+ "test:process-e2e": "vitest run tests/cli-process.e2e.test.ts",
36
+ "verify": "pnpm format:check && pnpm typecheck && pnpm test && pnpm build",
37
+ "format": "prettier --write ./src",
38
+ "format:check": "prettier --check ./src",
39
+ "dev": "tsx src/cli.ts",
40
+ "dev:watch": "tsup --config tsup.config.ts --watch",
41
+ "pack:check": "pnpm pack --pack-destination .pack",
42
+ "smoke:localhost": "vitest run tests/localhost.e2e.test.ts",
43
+ "prepublishOnly": "pnpm run verify",
44
+ "prepack": "pnpm run build"
45
+ },
46
+ "engines": {
47
+ "node": ">=22"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "dependencies": {
53
+ "esbuild": "^0.27.7",
54
+ "fast-glob": "3.3.3",
55
+ "tar": "7.5.20",
56
+ "zod": "^3.25.76"
57
+ },
58
+ "devDependencies": {
59
+ "@siteos/auth-contracts": "workspace:*",
60
+ "@types/node": "^24.0.0",
61
+ "execa": "^9.6.1",
62
+ "prettier": "3.9.6",
63
+ "tsup": "^8.5.0",
64
+ "tsx": "^4.21.0",
65
+ "typescript": "5.8.2",
66
+ "vitest": "^3.2.3"
67
+ }
68
+ }