@yesvara/svara 0.2.6 → 0.2.8

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/dist/cli/index.js CHANGED
@@ -97,7 +97,8 @@ function generatePackageJson(name) {
97
97
  start: "node dist/index.js"
98
98
  },
99
99
  dependencies: {
100
- "@yesvara/svara": "^0.1.3",
100
+ "@yesvara/svara": "^0.2.7",
101
+ "better-sqlite3": "^12.8.0",
101
102
  dotenv: "^16.4.5"
102
103
  },
103
104
  devDependencies: {
@@ -9,7 +9,7 @@ var pkg = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
9
9
  var program = new Command();
10
10
  program.name("svara").description(pkg.description).version(pkg.version, "-v, --version");
11
11
  program.command("new <name>").description("Create a new SvaraJS project").option("--provider <provider>", "LLM provider (openai|anthropic|ollama)", "openai").option("--channel <channels...>", "Channels to include", ["web"]).option("--no-install", "Skip npm install").action(async (name, opts) => {
12
- const { newProject } = await import("../new-CKIQEA2K.mjs");
12
+ const { newProject } = await import("../new-NTRI4APN.mjs");
13
13
  await newProject({
14
14
  name,
15
15
  provider: opts.provider,
@@ -66,7 +66,8 @@ function generatePackageJson(name) {
66
66
  start: "node dist/index.js"
67
67
  },
68
68
  dependencies: {
69
- "@yesvara/svara": "^0.1.3",
69
+ "@yesvara/svara": "^0.2.7",
70
+ "better-sqlite3": "^12.8.0",
70
71
  dotenv: "^16.4.5"
71
72
  },
72
73
  devDependencies: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yesvara/svara",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "Build AI agents in 15 lines of code. Multi-channel, RAG-ready, production-grade.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -47,7 +47,6 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@anthropic-ai/sdk": ">=0.20.0",
50
- "@yesvara/svara": "^0.2.0",
51
50
  "better-sqlite3": "^12.8.0",
52
51
  "chalk": "^5.3.0",
53
52
  "commander": "^12.1.0",
@@ -86,7 +86,8 @@ function generatePackageJson(name: string): string {
86
86
  start: 'node dist/index.js',
87
87
  },
88
88
  dependencies: {
89
- '@yesvara/svara': '^0.1.3',
89
+ '@yesvara/svara': '^0.2.7',
90
+ 'better-sqlite3': '^12.8.0',
90
91
  dotenv: '^16.4.5',
91
92
  },
92
93
  devDependencies: {