@guidemode/session-processing 0.1.43 → 0.1.45
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/tsconfig.tsbuildinfo +1 -1
- package/package.json +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guidemode/session-processing",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.45",
|
|
4
4
|
"description": "Shared session processing, metrics calculation, AI processing, and UI components for GuideMode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cjs/index.js",
|
|
@@ -47,26 +47,10 @@
|
|
|
47
47
|
"dist",
|
|
48
48
|
"index.css"
|
|
49
49
|
],
|
|
50
|
-
"scripts": {
|
|
51
|
-
"build": "pnpm run clean && pnpm run build:esm && pnpm run build:cjs && pnpm run build:cjs-package",
|
|
52
|
-
"build:esm": "tsc -p tsconfig.json",
|
|
53
|
-
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
54
|
-
"build:cjs-package": "echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
|
|
55
|
-
"dev": "tsc --watch",
|
|
56
|
-
"clean": "rm -rf dist *.tsbuildinfo",
|
|
57
|
-
"test": "vitest run",
|
|
58
|
-
"test:watch": "vitest",
|
|
59
|
-
"test:coverage": "vitest run --coverage",
|
|
60
|
-
"test:ui": "vitest --ui",
|
|
61
|
-
"typecheck": "tsc --noEmit",
|
|
62
|
-
"lint": "biome check src --diagnostic-level=error",
|
|
63
|
-
"lint:all": "biome check src",
|
|
64
|
-
"lint:fix": "biome check --write src"
|
|
65
|
-
},
|
|
66
50
|
"dependencies": {
|
|
67
51
|
"@anthropic-ai/sdk": "^0.32.1",
|
|
68
52
|
"@google/generative-ai": "^0.21.0",
|
|
69
|
-
"@guidemode/types": "
|
|
53
|
+
"@guidemode/types": "0.1.45"
|
|
70
54
|
},
|
|
71
55
|
"peerDependencies": {
|
|
72
56
|
"@heroicons/react": "^2.0.0",
|
|
@@ -140,5 +124,21 @@
|
|
|
140
124
|
"ai",
|
|
141
125
|
"typescript",
|
|
142
126
|
"guidemode"
|
|
143
|
-
]
|
|
144
|
-
|
|
127
|
+
],
|
|
128
|
+
"scripts": {
|
|
129
|
+
"build": "pnpm run clean && pnpm run build:esm && pnpm run build:cjs && pnpm run build:cjs-package",
|
|
130
|
+
"build:esm": "tsc -p tsconfig.json",
|
|
131
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
132
|
+
"build:cjs-package": "echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
|
|
133
|
+
"dev": "tsc --watch",
|
|
134
|
+
"clean": "rm -rf dist *.tsbuildinfo",
|
|
135
|
+
"test": "vitest run",
|
|
136
|
+
"test:watch": "vitest",
|
|
137
|
+
"test:coverage": "vitest run --coverage",
|
|
138
|
+
"test:ui": "vitest --ui",
|
|
139
|
+
"typecheck": "tsc --noEmit",
|
|
140
|
+
"lint": "biome check src --diagnostic-level=error",
|
|
141
|
+
"lint:all": "biome check src",
|
|
142
|
+
"lint:fix": "biome check --write src"
|
|
143
|
+
}
|
|
144
|
+
}
|