obi-sdk 0.19.4 → 0.19.5-beta.0
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/index.js +2 -2
- package/dist/obi-sdk.standalone.iife.js +2 -2
- package/package.json +27 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obi-sdk",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.5-beta.0",
|
|
4
4
|
"description": "JavaScript SDK for Obi",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/obi-sdk.umd.js",
|
|
@@ -16,6 +16,26 @@
|
|
|
16
16
|
"files": [
|
|
17
17
|
"dist"
|
|
18
18
|
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite --mode development",
|
|
21
|
+
"dev:staging": "VITE_API_BASE_URL=https://staging.coragents.ai vite --mode staging",
|
|
22
|
+
"build": "vite build --mode production",
|
|
23
|
+
"build:staging": "VITE_API_BASE_URL=https://staging.coragents.ai vite build --mode staging",
|
|
24
|
+
"build:publish": "pnpm build --mode production",
|
|
25
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
26
|
+
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
27
|
+
"preview": "vite preview",
|
|
28
|
+
"types": "tsc --emitDeclarationOnly",
|
|
29
|
+
"types:check": "tsc --noEmit",
|
|
30
|
+
"prepublishOnly": "pnpm build:publish && pnpm types",
|
|
31
|
+
"clean": "rimraf dist",
|
|
32
|
+
"storybook": "storybook dev -p 6006",
|
|
33
|
+
"build-storybook": "storybook build",
|
|
34
|
+
"test": "vitest run",
|
|
35
|
+
"test:ui": "vitest --ui",
|
|
36
|
+
"test:watch": "vitest",
|
|
37
|
+
"test:coverage": "vitest run --coverage"
|
|
38
|
+
},
|
|
19
39
|
"keywords": [
|
|
20
40
|
"obi",
|
|
21
41
|
"sdk",
|
|
@@ -31,6 +51,9 @@
|
|
|
31
51
|
"homepage": "https://www.iamobi.ai",
|
|
32
52
|
"dependencies": {
|
|
33
53
|
"@lit/react": "^1.0.7",
|
|
54
|
+
"@obi/obi-client": "workspace:*",
|
|
55
|
+
"@obi/obi-components": "workspace:*",
|
|
56
|
+
"@obi/utils": "workspace:*",
|
|
34
57
|
"@sentry/browser": "^9.23.0",
|
|
35
58
|
"@sentry/vite-plugin": "^3.5.0",
|
|
36
59
|
"@types/jsdom": "^21.1.7",
|
|
@@ -40,10 +63,7 @@
|
|
|
40
63
|
"mixpanel-browser": "^2.68.0",
|
|
41
64
|
"preact": ">=10.0.0",
|
|
42
65
|
"ts-pattern": "^5.7.0",
|
|
43
|
-
"zod": "^3.22.0"
|
|
44
|
-
"@obi/utils": "0.2.0",
|
|
45
|
-
"@obi/obi-components": "0.1.0",
|
|
46
|
-
"@obi/obi-client": "0.7.0"
|
|
66
|
+
"zod": "^3.22.0"
|
|
47
67
|
},
|
|
48
68
|
"devDependencies": {
|
|
49
69
|
"@chromatic-com/storybook": "^4.0.0-0",
|
|
@@ -73,23 +93,5 @@
|
|
|
73
93
|
"vite": "^4.5.0",
|
|
74
94
|
"vitest": "^2.1.8"
|
|
75
95
|
},
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
"dev:staging": "VITE_API_BASE_URL=https://staging.coragents.ai vite --mode staging",
|
|
79
|
-
"build": "vite build --mode production",
|
|
80
|
-
"build:staging": "VITE_API_BASE_URL=https://staging.coragents.ai vite build --mode staging",
|
|
81
|
-
"build:publish": "pnpm build --mode production",
|
|
82
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
83
|
-
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
84
|
-
"preview": "vite preview",
|
|
85
|
-
"types": "tsc --emitDeclarationOnly",
|
|
86
|
-
"types:check": "tsc --noEmit",
|
|
87
|
-
"clean": "rimraf dist",
|
|
88
|
-
"storybook": "storybook dev -p 6006",
|
|
89
|
-
"build-storybook": "storybook build",
|
|
90
|
-
"test": "vitest run",
|
|
91
|
-
"test:ui": "vitest --ui",
|
|
92
|
-
"test:watch": "vitest",
|
|
93
|
-
"test:coverage": "vitest run --coverage"
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
+
"packageManager": "pnpm@10.5.2"
|
|
97
|
+
}
|