@reminix/runtime 0.0.1 → 0.0.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.
package/README.md CHANGED
@@ -4,6 +4,8 @@ Core runtime package for serving AI agents via REST APIs. Provides the `serve()`
4
4
 
5
5
  Built on [Hono](https://hono.dev) for portability across Node.js, Deno, Bun, and edge runtimes.
6
6
 
7
+ > **Ready to go live?** [Deploy to Reminix](https://reminix.com/docs/deployment) for zero-config hosting, or [self-host](https://reminix.com/docs/deployment/self-hosting) on your own infrastructure.
8
+
7
9
  ## Installation
8
10
 
9
11
  ```bash
@@ -70,7 +72,7 @@ Returns runtime information and available agents:
70
72
  {
71
73
  "runtime": {
72
74
  "name": "reminix-runtime",
73
- "version": "0.0.1",
75
+ "version": "0.0.3",
74
76
  "language": "typescript",
75
77
  "framework": "hono"
76
78
  },
@@ -307,10 +309,17 @@ interface ChatResponse {
307
309
  }
308
310
  ```
309
311
 
312
+ ## Deployment
313
+
314
+ Ready to go live?
315
+
316
+ - **[Deploy to Reminix](https://reminix.com/docs/deployment)** - Zero-config cloud hosting
317
+ - **[Self-host](https://reminix.com/docs/deployment/self-hosting)** - Run on your own infrastructure
318
+
310
319
  ## Links
311
320
 
312
321
  - [GitHub Repository](https://github.com/reminix-ai/runtime-typescript)
313
- - [Documentation](https://docs.reminix.ai)
322
+ - [Documentation](https://reminix.com/docs)
314
323
 
315
324
  ## License
316
325
 
package/dist/version.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Runtime version.
3
3
  */
4
- export declare const VERSION = "0.0.1";
4
+ export declare const VERSION = "0.0.3";
5
5
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Runtime version.
3
3
  */
4
- export const VERSION = '0.0.1';
4
+ export const VERSION = '0.0.3';
5
5
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,8 +1,38 @@
1
1
  {
2
2
  "name": "@reminix/runtime",
3
- "version": "0.0.1",
4
- "description": "Reminix Runtime - Deploy AI agents via REST APIs",
3
+ "version": "0.0.3",
4
+ "description": "Reminix Runtime - Serve AI agents as REST APIs with streaming support",
5
5
  "license": "Apache-2.0",
6
+ "author": {
7
+ "name": "Reminix Team",
8
+ "email": "team@reminix.com",
9
+ "url": "https://reminix.com"
10
+ },
11
+ "keywords": [
12
+ "ai",
13
+ "agents",
14
+ "runtime",
15
+ "api",
16
+ "llm",
17
+ "openai",
18
+ "anthropic",
19
+ "typescript"
20
+ ],
21
+ "homepage": "https://reminix.com",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/reminix-ai/runtime-typescript.git",
25
+ "directory": "packages/runtime"
26
+ },
27
+ "bugs": {
28
+ "url": "https://github.com/reminix-ai/runtime-typescript/issues"
29
+ },
30
+ "engines": {
31
+ "node": ">=18"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
6
36
  "type": "module",
7
37
  "main": "./dist/index.js",
8
38
  "types": "./dist/index.d.ts",
@@ -13,7 +43,8 @@
13
43
  }
14
44
  },
15
45
  "files": [
16
- "dist"
46
+ "dist",
47
+ "LICENSE"
17
48
  ],
18
49
  "dependencies": {
19
50
  "hono": "^4.11.4",