-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@far-analytics/dialog",
"version": "1.0.2",
"description": "A modular framework for building VoIP-Agent applications.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/**",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc --build .",
"clean:build": "npm run clean && npm run build",
"lint": "npx eslint .",
"format": "npx prettier --write .",
"format:lint": "npm run format && npm run lint",
"watch": "tsc --watch"
},
"engines": {
"npm": ">=10.1.0",
"node": ">=20.9.0"
},
"dependencies": {
"@deepgram/sdk": "^3.11.2",
"openai": "^4.89.0",
"@far-analytics/port-peer": "^1.0.0",
"streams-logger": "^3.0.0",
"twilio": "^5.8.0",
"ws": "^8.18.1"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@types/node": "^20.11.28",
"@types/ws": "^8.18.1",
"eslint": "^9.37.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/far-analytics/dialog.git"
},
"author": "FAR Analytics & Research",
"license": "MIT",
"bugs": {
"url": "https://github.com/far-analytics/dialog/issues"
},
"homepage": "https://github.com/far-analytics/dialog#readme",
"type": "module"
}