humanbehavior-js 0.5.1 → 0.5.3

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 +14 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "humanbehavior-js",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "description": "SDK for HumanBehavior session and event recording",
5
5
  "private": false,
6
6
  "packageManager": "npm@10.0.0",
@@ -23,6 +23,9 @@
23
23
  ],
24
24
  "typesVersions": {
25
25
  "*": {
26
+ "core": [
27
+ "./packages/core/dist/index.d.ts"
28
+ ],
26
29
  "react": [
27
30
  "./packages/react/dist/index.d.ts"
28
31
  ],
@@ -52,6 +55,11 @@
52
55
  "require": "./packages/browser/dist/index.js",
53
56
  "types": "./packages/browser/dist/index.d.ts"
54
57
  },
58
+ "./core": {
59
+ "import": "./packages/core/dist/index.mjs",
60
+ "require": "./packages/core/dist/index.js",
61
+ "types": "./packages/core/dist/index.d.ts"
62
+ },
55
63
  "./react": {
56
64
  "import": "./packages/react/dist/index.mjs",
57
65
  "require": "./packages/react/dist/index.js",
@@ -102,6 +110,10 @@
102
110
  "test": "turbo test",
103
111
  "package": "turbo package"
104
112
  },
113
+ "dependencies": {
114
+ "@clack/prompts": "^0.11.0",
115
+ "openai": "^5.12.0"
116
+ },
105
117
  "devDependencies": {
106
118
  "@changesets/changelog-github": "^0.5.1",
107
119
  "@changesets/cli": "^2.29.5",
@@ -147,6 +159,6 @@
147
159
  "access": "public"
148
160
  },
149
161
  "bin": {
150
- "humanbehavior-js": "./packages/wizard/dist/cli/ai-auto-install.js"
162
+ "humanbehavior-js": "packages/wizard/dist/cli/ai-auto-install.js"
151
163
  }
152
164
  }