@doclessai/sdk 0.3.4 → 0.3.6
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/README.md +12 -3
- package/dist/{chunk-7OLOKQ6Q.js → chunk-YUCACKUS.js} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/loader.cjs +2 -2
- package/dist/loader.js +1 -1
- package/dist/loader.standalone.js +293 -0
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doclessai/sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"description": "Plug-and-play AI assistants infrastructure as a service.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
|
-
"build": "tsup src/index.ts src/loader.ts --format cjs,esm --dts --clean --minify",
|
|
29
|
+
"build": "tsup src/index.ts src/loader.ts --format cjs,esm --dts --clean --minify && node build-standalone.mjs",
|
|
30
30
|
"dev": "tsup src/index.ts src/loader.ts --format cjs,esm --watch --dts",
|
|
31
31
|
"lint": "tsc --noEmit"
|
|
32
32
|
},
|
|
@@ -46,6 +46,8 @@
|
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/react": "^19.2.13",
|
|
48
48
|
"@types/react-dom": "^19.2.3",
|
|
49
|
+
"react": "^19.2.4",
|
|
50
|
+
"react-dom": "^19.2.4",
|
|
49
51
|
"tsup": "^8.0.0",
|
|
50
52
|
"typescript": "^5.0.0"
|
|
51
53
|
},
|