-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.25 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
{
"name": "@frejun/teler",
"version": "1.0.7",
"description": "Teler Node SDK",
"keywords": [
"teler",
"@frejun/teler",
"voice-api",
"node-sdk",
"call",
"stream"
],
"homepage": "https://github.com/frejun-tech/teler-node#readme",
"bugs": {
"url": "https://github.com/frejun-tech/teler-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frejun-tech/teler-node.git"
},
"license": "ISC",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"dev": "npx ts-node src/example/basic-call.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"axios": "^1.13.3",
"ws": "^8.19.0",
"pino": "^10.3.1"
},
"devDependencies": {
"@types/node": "^25.0.8",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}