-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 964 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 964 Bytes
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
{
"type": "module",
"name": "scribe-quickstart",
"version": "1.0.0",
"description": "Zoom AI Scribe API Quickstart",
"main": "dist/index.js",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"format": "prettier --write src/*.ts",
"start": "npm run build && node dist/index.js",
"start:compiled": "node dist/index.js",
"playground": "cd playground && npm run dev"
},
"author": "Zoom Video Communications, Inc.",
"contributors": [
{
"name": "EkaanshArora"
}
],
"license": "ISC",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^16.6.1",
"express": "^4.22.1",
"jsrsasign": "^11.1.1",
"multer": "^2.1.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/multer": "^1.4.13",
"@types/jsrsasign": "^10.5.15",
"@types/node": "^24.12.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}