getpatter 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/LICENSE +21 -0
- package/README.md +720 -0
- package/dist/chunk-KB57IV4K.mjs +410 -0
- package/dist/index.d.mts +866 -0
- package/dist/index.d.ts +866 -0
- package/dist/index.js +4287 -0
- package/dist/index.mjs +3773 -0
- package/dist/test-mode-RTQAK5CP.mjs +6 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "getpatter",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Connect AI agents to phone numbers with 10 lines of code",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Nicolò Tognoni",
|
|
8
|
+
"email": "nicolo@getpatter.com"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/PatterAI/Patter.git",
|
|
13
|
+
"directory": "sdk-ts"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://www.getpatter.com",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/PatterAI/Patter/issues"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"voice",
|
|
21
|
+
"ai",
|
|
22
|
+
"phone",
|
|
23
|
+
"telephony",
|
|
24
|
+
"speech",
|
|
25
|
+
"tts",
|
|
26
|
+
"stt",
|
|
27
|
+
"twilio",
|
|
28
|
+
"telnyx",
|
|
29
|
+
"openai",
|
|
30
|
+
"elevenlabs"
|
|
31
|
+
],
|
|
32
|
+
"main": "dist/index.js",
|
|
33
|
+
"module": "dist/index.mjs",
|
|
34
|
+
"types": "dist/index.d.ts",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/index.d.ts",
|
|
38
|
+
"import": "./dist/index.mjs",
|
|
39
|
+
"require": "./dist/index.js"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"sideEffects": false,
|
|
43
|
+
"files": [
|
|
44
|
+
"dist"
|
|
45
|
+
],
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
48
|
+
"prepublishOnly": "npm run build",
|
|
49
|
+
"test": "vitest run",
|
|
50
|
+
"test:watch": "vitest",
|
|
51
|
+
"lint": "tsc --noEmit"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"express": "^5.2.1",
|
|
55
|
+
"ws": "^8.18.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/express": "^5.0.6",
|
|
59
|
+
"@types/ws": "^8.5.0",
|
|
60
|
+
"tsup": "^8.0.0",
|
|
61
|
+
"tsx": "^4.21.0",
|
|
62
|
+
"typescript": "^5.4.0",
|
|
63
|
+
"vitest": "^2.0.0"
|
|
64
|
+
},
|
|
65
|
+
"engines": {
|
|
66
|
+
"node": ">=18.0.0"
|
|
67
|
+
}
|
|
68
|
+
}
|