@biab-dev/sdk 0.2.1 → 0.7.2

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,67 +1,74 @@
1
1
  {
2
- "name": "@biab-dev/sdk",
3
- "version": "0.2.1",
4
- "private": false,
5
- "description": "[alpha] Business In A Box developer SDK — not for production; site-scoped collections, assets, and named actions.",
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
- },
28
- "scripts": {
29
- "clean": "node -e \"const fs=require('node:fs');fs.rmSync('dist',{recursive:true,force:true})\"",
30
- "build": "npm run clean && tsc -p tsconfig.build.json",
31
- "typecheck": "tsc -p tsconfig.json --noEmit",
32
- "prepublishOnly": "npm run build"
33
- },
34
- "publishConfig": {
35
- "access": "public"
36
- },
37
- "repository": {
38
- "type": "git",
39
- "url": "git+https://github.com/Gold240sx/business-in-a-box.git",
40
- "directory": "biab-dev"
41
- },
42
- "license": "MIT",
43
- "keywords": [
44
- "biab",
45
- "business-in-a-box",
46
- "alpha"
47
- ],
48
- "dependencies": {
49
- "zod": "^3.24.2"
50
- },
51
- "peerDependencies": {
52
- "react": ">=18.0.0",
53
- "react-dom": ">=18.0.0"
54
- },
55
- "peerDependenciesMeta": {
56
- "react": { "optional": true },
57
- "react-dom": { "optional": true }
58
- },
59
- "devDependencies": {
60
- "@types/react": "^19.0.0",
61
- "react": "^19.0.0",
62
- "typescript": "^5.8.2"
63
- },
64
- "engines": {
65
- "node": ">=18"
66
- }
67
- }
2
+ "name": "@biab-dev/sdk",
3
+ "version": "0.7.2",
4
+ "private": false,
5
+ "description": "[alpha] Business In A Box developer SDK — not for production; site-scoped collections, assets, named actions, and embeddable storefront / cart / checkout / blog / chatbot surfaces.",
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
+ }