@loopstack/meeting-notes-example-workflow 0.19.0-rc.1 → 0.19.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 (1) hide show
  1. package/package.json +17 -17
package/package.json CHANGED
@@ -2,19 +2,19 @@
2
2
  "name": "@loopstack/meeting-notes-example-workflow",
3
3
  "displayName": "Loopstack Meeting Notes Example Worflow",
4
4
  "description": "A complete workflow demonstrating how to create a workflow in loopstack based on a meeting notes summary use case.",
5
- "version": "0.19.0-rc.1",
6
- "author": {
7
- "name": "Jakob Klippel",
8
- "url": "https://www.linkedin.com/in/jakob-klippel/"
9
- },
10
5
  "keywords": [
11
- "example",
12
- "workflow",
13
6
  "automation",
7
+ "example",
14
8
  "meeting notes",
15
- "summary"
9
+ "summary",
10
+ "workflow"
16
11
  ],
12
+ "version": "0.19.0",
17
13
  "license": "Apache-2.0",
14
+ "author": {
15
+ "name": "Jakob Klippel",
16
+ "url": "https://www.linkedin.com/in/jakob-klippel/"
17
+ },
18
18
  "main": "dist/index.js",
19
19
  "types": "dist/index.d.ts",
20
20
  "exports": {
@@ -30,9 +30,9 @@
30
30
  "watch": "nest build --watch"
31
31
  },
32
32
  "dependencies": {
33
- "@loopstack/ai-module": "^0.19.0-rc.1",
34
- "@loopstack/common": "^0.19.0-rc.1",
35
- "@loopstack/core-ui-module": "^0.19.0-rc.1",
33
+ "@loopstack/ai-module": "^0.19.0",
34
+ "@loopstack/common": "^0.19.0",
35
+ "@loopstack/core-ui-module": "^0.19.0",
36
36
  "@nestjs/common": "^11.1.12",
37
37
  "zod": "^4.3.5"
38
38
  },
@@ -40,12 +40,6 @@
40
40
  "dist",
41
41
  "src"
42
42
  ],
43
- "loopstack": {
44
- "module": "src/meeting-notes-example.module.ts",
45
- "workflows": [
46
- "src/meeting-notes.workflow.ts"
47
- ]
48
- },
49
43
  "jest": {
50
44
  "testEnvironment": "node",
51
45
  "rootDir": "src",
@@ -56,5 +50,11 @@
56
50
  "testTimeout": 10000,
57
51
  "forceExit": true,
58
52
  "maxWorkers": 1
53
+ },
54
+ "loopstack": {
55
+ "module": "src/meeting-notes-example.module.ts",
56
+ "workflows": [
57
+ "src/meeting-notes.workflow.ts"
58
+ ]
59
59
  }
60
60
  }