@biab-dev/sdk 0.7.51 → 0.7.60

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 CHANGED
@@ -1,71 +1,74 @@
1
1
  {
2
- "name": "@biab-dev/sdk",
3
- "version": "0.7.51",
4
- "private": false,
5
- "description": "[alpha] Business In A Box developer SDK — not for production. Embeddable storefront / cart / checkout / blog / chatbot surfaces, tenant sign-in / sign-up / sign-out flow, site-scoped collections + assets + named actions, and a typed package-API client. The chatbot widget passes the org's dashboard config (model, knowledge base, tone, handoff dial) straight through; live front-desk handoff is gated on the org's subscription plan server-side.",
6
- "type": "module",
7
- "sideEffects": false,
8
- "files": [
9
- "dist"
10
- ],
11
- "main": "./dist/index.js",
12
- "module": "./dist/index.js",
13
- "types": "./dist/index.d.ts",
14
- "exports": {
15
- ".": {
16
- "types": "./dist/index.d.ts",
17
- "import": "./dist/index.js"
18
- },
19
- "./contracts": {
20
- "types": "./dist/contracts.d.ts",
21
- "import": "./dist/contracts.js"
22
- },
23
- "./react": {
24
- "types": "./dist/react.d.ts",
25
- "import": "./dist/react.js"
26
- },
27
- "./proxy": {
28
- "types": "./dist/proxy.d.ts",
29
- "import": "./dist/proxy.js"
30
- }
31
- },
32
- "scripts": {
33
- "clean": "node -e \"const fs=require('node:fs');fs.rmSync('dist',{recursive:true,force:true})\"",
34
- "build": "npm run clean && tsc -p tsconfig.build.json",
35
- "typecheck": "tsc -p tsconfig.json --noEmit",
36
- "prepublishOnly": "npm run build"
37
- },
38
- "publishConfig": {
39
- "access": "public"
40
- },
41
- "repository": {
42
- "type": "git",
43
- "url": "git+https://github.com/Gold240sx/business-in-a-box.git",
44
- "directory": "biab-dev"
45
- },
46
- "license": "MIT",
47
- "keywords": [
48
- "biab",
49
- "business-in-a-box",
50
- "alpha"
51
- ],
52
- "dependencies": {
53
- "zod": "^3.24.2"
54
- },
55
- "peerDependencies": {
56
- "react": ">=18.0.0",
57
- "react-dom": ">=18.0.0"
58
- },
59
- "peerDependenciesMeta": {
60
- "react": { "optional": true },
61
- "react-dom": { "optional": true }
62
- },
63
- "devDependencies": {
64
- "@types/react": "^19.0.0",
65
- "react": "^19.0.0",
66
- "typescript": "^5.8.2"
67
- },
68
- "engines": {
69
- "node": ">=18"
70
- }
71
- }
2
+ "name": "@biab-dev/sdk",
3
+ "version": "0.7.60",
4
+ "private": false,
5
+ "description": "[alpha] Business In A Box developer SDK — not for production. Embeddable storefront / cart / checkout / blog / chatbot surfaces, tenant sign-in / sign-up / sign-out flow, site-scoped collections + assets + named actions, and a typed package-API client. The chatbot widget passes the org's dashboard config (model, knowledge base, tone, handoff dial) straight through; live front-desk handoff is gated on the org's subscription plan server-side.",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "main": "./dist/index.js",
12
+ "module": "./dist/index.js",
13
+ "types": "./dist/index.d.ts",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/index.js"
18
+ },
19
+ "./contracts": {
20
+ "types": "./dist/contracts.d.ts",
21
+ "import": "./dist/contracts.js"
22
+ },
23
+ "./react": {
24
+ "types": "./dist/react.d.ts",
25
+ "import": "./dist/react.js"
26
+ },
27
+ "./proxy": {
28
+ "types": "./dist/proxy.d.ts",
29
+ "import": "./dist/proxy.js"
30
+ }
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "git+https://github.com/Gold240sx/business-in-a-box.git",
38
+ "directory": "biab-dev"
39
+ },
40
+ "license": "MIT",
41
+ "keywords": [
42
+ "biab",
43
+ "business-in-a-box",
44
+ "alpha"
45
+ ],
46
+ "dependencies": {
47
+ "zod": "^3.24.2"
48
+ },
49
+ "peerDependencies": {
50
+ "react": ">=18.0.0",
51
+ "react-dom": ">=18.0.0"
52
+ },
53
+ "peerDependenciesMeta": {
54
+ "react": {
55
+ "optional": true
56
+ },
57
+ "react-dom": {
58
+ "optional": true
59
+ }
60
+ },
61
+ "devDependencies": {
62
+ "@types/react": "^19.0.0",
63
+ "react": "^19.0.0",
64
+ "typescript": "^5.8.2"
65
+ },
66
+ "engines": {
67
+ "node": ">=18"
68
+ },
69
+ "scripts": {
70
+ "clean": "node -e \"const fs=require('node:fs');fs.rmSync('dist',{recursive:true,force:true})\"",
71
+ "build": "npm run clean && tsc -p tsconfig.build.json",
72
+ "typecheck": "tsc -p tsconfig.json --noEmit"
73
+ }
74
+ }