@semilayer/cli 1.1.0 → 1.2.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/README.md ADDED
@@ -0,0 +1,38 @@
1
+ <p align="right">
2
+ <img src="https://raw.githubusercontent.com/semilayer/semilayer/main/assets/logo.png" alt="SemiLayer" width="120" />
3
+ <br />
4
+ <strong>@semilayer/cli</strong>
5
+ </p>
6
+
7
+ <p align="right">
8
+ The official CLI for <a href="https://semilayer.com">SemiLayer</a> — login, init, generate, push, status, dev. The primary interface for wiring up semantic search, similarity, and smart feeds on your existing database.
9
+ </p>
10
+
11
+ ---
12
+
13
+ ## Install
14
+
15
+ ```bash
16
+ pnpm add -D @semilayer/cli
17
+ # or globally
18
+ npm i -g @semilayer/cli
19
+ ```
20
+
21
+ ## Quick start
22
+
23
+ ```bash
24
+ semilayer login # browser-based auth
25
+ semilayer init # scaffold sl.config.ts + .semilayerrc
26
+ semilayer push # push config to the service
27
+ semilayer generate # generate the typed Beam client
28
+ semilayer status # check lens + queue status
29
+ semilayer dev # watch mode
30
+ ```
31
+
32
+ Commands include `orgs`, `projects`, `envs`, `keys`, `sources`, `lenses`, `members`, `billing`, `ingest`, `pause`, `resume`, and more. Run `semilayer --help` for the full list.
33
+
34
+ See [semilayer.dev](https://semilayer.dev) for the full docs.
35
+
36
+ ## License
37
+
38
+ MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/dist/index.js CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semilayer/cli",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "SemiLayer CLI — init, generate, push, status, dev",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -14,19 +14,12 @@
14
14
  "files": [
15
15
  "dist"
16
16
  ],
17
- "scripts": {
18
- "build": "tsup",
19
- "dev": "tsup --watch",
20
- "lint": "eslint src/",
21
- "typecheck": "tsc --noEmit",
22
- "test": "vitest run"
23
- },
24
17
  "dependencies": {
25
- "@semilayer/core": "workspace:*",
26
- "@semilayer/codegen": "workspace:*",
27
- "@semilayer/client": "workspace:*",
28
18
  "citty": "^0.1.0",
29
- "jiti": "^2.4.0"
19
+ "jiti": "^2.4.0",
20
+ "@semilayer/core": "0.1.3",
21
+ "@semilayer/codegen": "1.2.0",
22
+ "@semilayer/client": "1.2.0"
30
23
  },
31
24
  "devDependencies": {
32
25
  "@types/node": "^22.0.0",
@@ -36,5 +29,12 @@
36
29
  },
37
30
  "bin": {
38
31
  "semilayer": "./dist/bin.js"
32
+ },
33
+ "scripts": {
34
+ "build": "tsup",
35
+ "dev": "tsup --watch",
36
+ "lint": "eslint src/",
37
+ "typecheck": "tsc --noEmit",
38
+ "test": "vitest run"
39
39
  }
40
- }
40
+ }