samoagent 0.3.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/logo.svg ADDED
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
2
+ <rect width="200" height="200" rx="36" fill="#1a1a2e"/>
3
+ <text x="95" y="148" font-family="Arial Black,sans-serif" font-size="130" font-weight="900" fill="white" text-anchor="middle">S</text>
4
+ <circle cx="163" cy="37" r="26" fill="#ff3333"/>
5
+ </svg>
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "samoagent",
3
+ "version": "0.3.0",
4
+ "description": "Let AI agents join Zoom and Google Meet calls as active participants.",
5
+ "type": "module",
6
+ "license": "Apache-2.0",
7
+ "bin": {
8
+ "samoagent": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist/cli.js",
12
+ "dictionaries/",
13
+ "LICENSE",
14
+ "README.md",
15
+ "CLAUDE.md",
16
+ "avatar.html",
17
+ "avatar.png",
18
+ "logo.svg"
19
+ ],
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/NikolayS/samoagent.git"
23
+ },
24
+ "homepage": "https://samoagent.dev/",
25
+ "bugs": {
26
+ "url": "https://github.com/NikolayS/samoagent/issues"
27
+ },
28
+ "keywords": [
29
+ "ai-agent",
30
+ "meetings",
31
+ "recall-ai",
32
+ "zoom",
33
+ "google-meet",
34
+ "transcript",
35
+ "websocket"
36
+ ],
37
+ "engines": {
38
+ "bun": ">=1.2.0"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "scripts": {
44
+ "samoagent": "bun src/cli.ts",
45
+ "test": "bun test",
46
+ "build": "tsc --noEmit && bun build src/cli.ts --target bun --outfile dist/cli.js && chmod +x dist/cli.js",
47
+ "prepack": "bun run build"
48
+ },
49
+ "devDependencies": {
50
+ "@types/bun": "latest",
51
+ "typescript": "^5.9.3"
52
+ }
53
+ }