@whereby.com/assistant-sdk 0.0.0-canary-20250903113745
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/LICENCE.md +23 -0
- package/README.md +1 -0
- package/dist/index.cjs +575 -0
- package/dist/index.d.cts +131 -0
- package/dist/index.d.mts +131 -0
- package/dist/index.d.ts +131 -0
- package/dist/index.mjs +568 -0
- package/dist/legacy-esm.js +568 -0
- package/dist/polyfills.cjs +112 -0
- package/dist/polyfills.d.ts +3 -0
- package/package.json +64 -0
- package/polyfills/package.json +4 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@whereby.com/assistant-sdk",
|
|
3
|
+
"description": "Assistant SDK for whereby.com",
|
|
4
|
+
"author": "Whereby AS",
|
|
5
|
+
"version": "0.0.0-canary-20250903113745",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"polyfills/package.json"
|
|
10
|
+
],
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/index.cjs",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": {
|
|
19
|
+
"types": "./dist/index.d.mts",
|
|
20
|
+
"default": "./dist/index.mjs"
|
|
21
|
+
},
|
|
22
|
+
"require": {
|
|
23
|
+
"types": "./dist/index.d.cts",
|
|
24
|
+
"default": "./dist/index.cjs"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"./polyfills": {
|
|
28
|
+
"import": {
|
|
29
|
+
"types": "./dist/polyfills.d.ts",
|
|
30
|
+
"default": "./dist/polyfills.cjs"
|
|
31
|
+
},
|
|
32
|
+
"require": {
|
|
33
|
+
"types": "./dist/polyfills.d.ts",
|
|
34
|
+
"default": "./dist/polyfills.cjs"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"eslint": "^9.29.0",
|
|
40
|
+
"prettier": "^3.5.3",
|
|
41
|
+
"typescript": "^5.8.3",
|
|
42
|
+
"@whereby.com/rollup-config": "0.1.0",
|
|
43
|
+
"@whereby.com/prettier-config": "0.1.0",
|
|
44
|
+
"@whereby.com/jest-config": "0.1.0",
|
|
45
|
+
"@whereby.com/eslint-config": "0.1.0",
|
|
46
|
+
"@whereby.com/tsconfig": "0.1.0"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@roamhq/wrtc": "github:whereby/node-webrtc#patch/rtc_audio_source",
|
|
50
|
+
"uuid": "^11.0.3",
|
|
51
|
+
"ws": "^8.18.0",
|
|
52
|
+
"@whereby.com/core": "0.0.0-canary-20250903113745"
|
|
53
|
+
},
|
|
54
|
+
"prettier": "@whereby.com/prettier-config",
|
|
55
|
+
"scripts": {
|
|
56
|
+
"clean": "rimraf dist node_modules .turbo",
|
|
57
|
+
"build": "rimraf dist && rollup -c rollup.config.js",
|
|
58
|
+
"test": "pnpm test:lint && pnpm test:unit",
|
|
59
|
+
"test:lint": "eslint src/",
|
|
60
|
+
"test:unit": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
|
|
61
|
+
"test:unit:watch": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --watch",
|
|
62
|
+
"test:attw": "attw --pack . -f table"
|
|
63
|
+
}
|
|
64
|
+
}
|