humanbehavior-js 0.5.41 → 0.5.43
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/package.json +3 -2
- package/packages/wizard/dist/cli/ai-auto-install.js +5 -5
- package/packages/wizard/dist/cli/ai-auto-install.js.map +1 -1
- package/packages/wizard/dist/index.js +1 -1
- package/packages/wizard/dist/index.js.map +1 -1
- package/packages/wizard/dist/index.mjs +1 -1
- package/packages/wizard/dist/index.mjs.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "humanbehavior-js",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.43",
|
|
4
4
|
"description": "SDK for HumanBehavior session and event recording",
|
|
5
5
|
"private": false,
|
|
6
6
|
"packageManager": "npm@10.0.0",
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
"lint:fix": "turbo lint:fix",
|
|
73
73
|
"test": "turbo test",
|
|
74
74
|
"package": "turbo package",
|
|
75
|
-
"testing": "npm run clean && npm run build && npm pack"
|
|
75
|
+
"testing": "npm run clean && npm run build && npm pack",
|
|
76
|
+
"postinstall": "chmod +x packages/wizard/dist/cli/ai-auto-install.js packages/wizard/dist/cli/auto-install.js 2>/dev/null || true"
|
|
76
77
|
},
|
|
77
78
|
"dependencies": {
|
|
78
79
|
"@clack/prompts": "^0.11.0",
|
|
@@ -1933,7 +1933,7 @@ function showHelp() {
|
|
|
1933
1933
|
console.log(`
|
|
1934
1934
|
🤖 HumanBehavior SDK AI Auto-Installation
|
|
1935
1935
|
|
|
1936
|
-
Usage: npx humanbehavior-js
|
|
1936
|
+
Usage: npx humanbehavior-js [api-key] [options]
|
|
1937
1937
|
|
|
1938
1938
|
Options:
|
|
1939
1939
|
-h, --help Show this help message
|
|
@@ -1944,10 +1944,10 @@ Options:
|
|
|
1944
1944
|
-f, --framework <name> Specify framework manually
|
|
1945
1945
|
|
|
1946
1946
|
Examples:
|
|
1947
|
-
npx humanbehavior-js
|
|
1948
|
-
npx humanbehavior-js
|
|
1949
|
-
npx humanbehavior-js
|
|
1950
|
-
npx humanbehavior-js
|
|
1947
|
+
npx humanbehavior-js
|
|
1948
|
+
npx humanbehavior-js hb_your_api_key_here
|
|
1949
|
+
npx humanbehavior-js --project ./my-app --framework nextjs
|
|
1950
|
+
npx humanbehavior-js --framework react --yes
|
|
1951
1951
|
`);
|
|
1952
1952
|
}
|
|
1953
1953
|
// Main execution
|