-
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.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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": "@deepgram/node-text-intelligence",
"version": "1.0.0",
"private": true,
"description": "Text Intelligence starter app using Deepgram's Read API for summarization, topics, sentiment, and intent analysis",
"main": "server.js",
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"start": "node --no-deprecation server.js",
"start-backend": "nodemon --no-deprecation server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepgram-starters/node-text-intelligence.git"
},
"keywords": [
"text-intelligence",
"deepgram",
"summarization",
"sentiment-analysis"
],
"author": "Deepgram DX Team <devrel@deepgram.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deepgram-starters/node-text-intelligence/issues"
},
"homepage": "https://github.com/deepgram-starters/node-text-intelligence#readme",
"dependencies": {
"@deepgram/sdk": "4.11.3",
"cors": "2.8.5",
"dotenv": "17.2.3",
"express": "5.2.1",
"jsonwebtoken": "9.0.2",
"toml": "3.0.0"
},
"devDependencies": {
"nodemon": "3.1.10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}