orkajs 1.0.0 → 1.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/README.md +1 -0
  3. package/package.json +26 -10
package/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.1] - 2026-10-15
9
+
10
+ ### Fixed
11
+ - Fixed Discord link in README
12
+
8
13
  ## [1.0.0] - 2026-03-02
9
14
 
10
15
  ### Added
package/README.md CHANGED
@@ -71,6 +71,7 @@ console.log(result.answer);
71
71
  ## Documentation
72
72
 
73
73
  **📚 [orkajs.com](https://orkajs.com)**
74
+ **💬 [Discord](https://discord.gg/KAZCesekvg)**
74
75
 
75
76
  - [Getting Started](https://orkajs.com/en/getting-started/introduction)
76
77
  - [RAG & Knowledge](https://orkajs.com/en/core/knowledge)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orkajs",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "TypeScript framework for building production-ready LLM systems. RAG, agents, workflows, multi-model orchestration.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -39,7 +39,7 @@
39
39
  "fastify",
40
40
  "adonisjs",
41
41
  "express",
42
- "koajs",
42
+ "koajs",
43
43
  "nestjs",
44
44
  "llm",
45
45
  "rag",
@@ -76,14 +76,30 @@
76
76
  "redis": "^4.6.0"
77
77
  },
78
78
  "peerDependenciesMeta": {
79
- "openai": { "optional": true },
80
- "@anthropic-ai/sdk": { "optional": true },
81
- "@pinecone-database/pinecone": { "optional": true },
82
- "@qdrant/js-client-rest": { "optional": true },
83
- "chromadb": { "optional": true },
84
- "pdf-parse": { "optional": true },
85
- "zod": { "optional": true },
86
- "redis": { "optional": true }
79
+ "openai": {
80
+ "optional": true
81
+ },
82
+ "@anthropic-ai/sdk": {
83
+ "optional": true
84
+ },
85
+ "@pinecone-database/pinecone": {
86
+ "optional": true
87
+ },
88
+ "@qdrant/js-client-rest": {
89
+ "optional": true
90
+ },
91
+ "chromadb": {
92
+ "optional": true
93
+ },
94
+ "pdf-parse": {
95
+ "optional": true
96
+ },
97
+ "zod": {
98
+ "optional": true
99
+ },
100
+ "redis": {
101
+ "optional": true
102
+ }
87
103
  },
88
104
  "exports": {
89
105
  ".": {