-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
package.json
43 lines (43 loc) · 1.23 KB
/
package.json
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
{
"name": "janus-gateway",
"version": "1.3.0",
"description": "A javascript library for interacting with the C based Janus WebRTC Server",
"main": "npm/dist/janus.es.js",
"types": "npm/janus.d.ts",
"files": [
"npm/dist",
"npm/src",
"npm/janus.d.ts",
"npm/README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/meetecho/janus-gateway.git",
"directory": "npm"
},
"author": {
"name": "Lorenzo Miniero",
"email": "lorenzo@meetecho.com",
"url": "https://www.meetecho.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/meetecho/janus-gateway/issues"
},
"homepage": "https://janus.conf.meetecho.com/docs/JS",
"dependencies": {
"webrtc-adapter": "8.2.3"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-strip": "^3.0.2",
"eslint": "^9.4.0",
"eslint-plugin-html": "^8.1.1",
"rollup": "^3.21.6"
},
"scripts": {
"lint": "npx eslint --debug html",
"rollup": "npx rollup -c npm/rollup.config.mjs",
"prerelease": "npm run rollup -- --o npm/dist/janus.es.js --f es && node -e \"const fs=require('fs'); const data=fs.readFileSync('./html/demos/janus.js'); fs.mkdirSync('./npm/src', {recursive:true}); fs.writeFileSync('./npm/src/janus.js',data);\""
}
}