@ourlu/assistant-sdk 0.2.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/README.md +109 -0
- package/dist/esm/index.js +436 -0
- package/dist/iife/audio.v1.js +179 -0
- package/dist/iife/engine.v1.js +645 -0
- package/dist/iife/loader.v1.js +71 -0
- package/dist/iife/ui.v1.js +919 -0
- package/package.json +39 -0
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ourlu/assistant-sdk",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "SDK JavaScript pour l'assistant conversationnel Ourlu — widget intégrable pour les mairies.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"private": false,
|
|
7
|
+
"main": "dist/esm/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./dist/esm/index.js",
|
|
10
|
+
"./loader.v1.js": "./dist/iife/loader.v1.js",
|
|
11
|
+
"./ui.v1.js": "./dist/iife/ui.v1.js",
|
|
12
|
+
"./audio.v1.js": "./dist/iife/audio.v1.js",
|
|
13
|
+
"./engine.v1.js": "./dist/iife/engine.v1.js"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "node ./scripts/build.mjs",
|
|
20
|
+
"test": "node --test ./tests/*.test.mjs",
|
|
21
|
+
"prepack": "npm run build && npm run test",
|
|
22
|
+
"pack:check": "npm pack --dry-run",
|
|
23
|
+
"publish:dry-run": "npm publish --dry-run"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"assistant",
|
|
27
|
+
"widget",
|
|
28
|
+
"sdk",
|
|
29
|
+
"javascript",
|
|
30
|
+
"ourlu",
|
|
31
|
+
"mairie"
|
|
32
|
+
],
|
|
33
|
+
"author": "Ourlu",
|
|
34
|
+
"license": "UNLICENSED",
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"registry": "https://registry.npmjs.org/",
|
|
37
|
+
"access": "public"
|
|
38
|
+
}
|
|
39
|
+
}
|