@rahul_vendure/ai-chat-plugin 0.1.7 → 0.1.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.
Files changed (3) hide show
  1. package/LICENSE +14 -0
  2. package/README.md +1 -1
  3. package/package.json +4 -3
package/LICENSE ADDED
@@ -0,0 +1,14 @@
1
+ Copyright (C) 2025 Rahul Yadav
2
+
3
+ This program is free software: you can redistribute it and/or modify
4
+ it under the terms of the GNU Affero General Public License as published by
5
+ the Free Software Foundation, either version 3 of the License, or
6
+ (at your option) any later version.
7
+
8
+ This program is distributed in the hope that it will be useful,
9
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ GNU Affero General Public License for more details.
12
+
13
+ You should have received a copy of the GNU Affero General Public License
14
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
package/README.md CHANGED
@@ -225,4 +225,4 @@ import {
225
225
 
226
226
  ## License
227
227
 
228
- MIT
228
+ AGPL-3.0 — see [LICENSE](./LICENSE) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rahul_vendure/ai-chat-plugin",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "AI-powered shopping assistant plugin for Vendure — LLM chat, vector search, cart management, and order tracking",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -12,7 +12,8 @@
12
12
  },
13
13
  "files": [
14
14
  "dist",
15
- "README.md"
15
+ "README.md",
16
+ "LICENSE"
16
17
  ],
17
18
  "scripts": {
18
19
  "build": "tsc",
@@ -32,7 +33,7 @@
32
33
  "ecommerce"
33
34
  ],
34
35
  "author": "Rahul Yadav",
35
- "license": "MIT",
36
+ "license": "AGPL-3.0",
36
37
  "publishConfig": {
37
38
  "access": "public"
38
39
  },