-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "telenow",
"version": "0.4.0",
"description": "Telenow App Platform SDK — build installable apps for the Telenow voice AI dashboard: a React UI that renders in the dashboard, verify signed agent tool calls & event webhooks, and read/write your app's data. Includes the `telenow build` packaging CLI.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"telenow": "./bin/telenow.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"import": "./dist/browser.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
}
},
"files": [
"dist",
"bin",
"telenow.app.schema.json",
"README.md"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"telenow",
"voice-ai",
"app-platform",
"marketplace",
"plugin",
"crm",
"sdk",
"react",
"webhook",
"hmac"
],
"license": "MIT",
"author": "Telenow AI",
"homepage": "https://github.com/TelenowAI/app-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TelenowAI/app-sdk.git"
},
"bugs": {
"url": "https://github.com/TelenowAI/app-sdk/issues"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"dependencies": {
"adm-zip": "^0.5.18",
"esbuild": "^0.21.5"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.0"
}
}