@convocraft/launcher 0.1.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.
@@ -0,0 +1,7 @@
1
+ //#region src/bubble.d.ts
2
+ declare function initBubble(): Promise<void>;
3
+ //#endregion
4
+ //#region src/popup.d.ts
5
+ declare function initPopup(): Promise<void>;
6
+ //#endregion
7
+ export { initBubble, initPopup };
package/dist/index.mjs ADDED
@@ -0,0 +1 @@
1
+ const e=e=>new Promise(t=>setTimeout(t,e));async function t(){await e(3e3),console.log(`Hello ConvoCraft Chatbot Bubble Launcher`)}async function n(){await e(3e3),console.log(`Hello ConvoCraft Chatbot Popup Launcher`)}export{t as initBubble,n as initPopup};
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@convocraft/launcher",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "files": [
6
+ "dist"
7
+ ],
8
+ "main": "./dist/index.mjs",
9
+ "module": "./dist/index.mjs",
10
+ "types": "./dist/index.d.mts",
11
+ "exports": {
12
+ ".": "./dist/index.mjs",
13
+ "./package.json": "./package.json"
14
+ },
15
+ "devDependencies": {
16
+ "tsdown": "^0.16.0"
17
+ },
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "scripts": {
22
+ "build": "tsdown",
23
+ "release": "pnpm publish",
24
+ "_dev": "tsdown --watch",
25
+ "popup": "node ./dist/popup.mjs",
26
+ "bubble": "node ./dist/bubble.mjs"
27
+ }
28
+ }