-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 817 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 817 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
{
"name": "agora-token-server",
"version": "1.0.0",
"description": "Agora token server.",
"main": "./src/index.js",
"dependencies": {
"agora-access-token": "^2.0.4",
"dotenv": "^16.0.0",
"express": "4.18.1"
},
"scripts": {
"test": "nodemon ./src/index.js",
"start": "node ./src/index.js"
},
"devDependencies": {
"nodemon": "^2.0.16"
},
"engines": {
"node": ">=17.x",
"pnpm": ">=7.x",
"npm": ">=8.x"
},
"repository": {
"type": "git",
"url": "https://github.com/nixrajput/agora-token-server-nodejs.git"
},
"keywords": [],
"author": "Nikhil Kumar",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/nixrajput/agora-token-server-nodejs/issues"
},
"homepage": "https://github.com/nixrajput/agora-token-server-nodejs#readme"
}