-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
79 lines (79 loc) · 2.38 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
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
{
"name": "@antmedia/webrtc_adaptor",
"version": "2.8.0-SNAPSHOT",
"description": "WebRTC Adaptor for implementing a front end using Ant Media Server.",
"main": "dist/index.js",
"module": "dist/es/index.js",
"type": "module",
"directories": {
"doc": "doc"
},
"scripts": {
"compile": "npm run cleanup:tsbuild && npm run compile:js && npm run compile:ts && copy-files-from-to && npm run cleanup:tsbuild",
"compile:js": "rollup -c rollup.config.module.cjs && rollup -c rollup.config.browser.cjs ",
"compile:ts": "tsc -p ./tsconfig.json && api-extractor run",
"cleanup:tsbuild": "rimraf ./tsbuild",
"test": "karma start karma.conf.cjs",
"codecov": "codecov"
},
"copyFiles": [
{
"from": "./dist/es/index.d.ts",
"to": "./dist/index.d.ts"
},
{
"from": "./dist/es/index.d.ts",
"to": "./src/main/webapp/js/index.d.ts"
},
{
"from": "./dist/es/*",
"to": "./src/main/webapp/js/"
}
],
"copyFilesSettings": {
"whenFileExists": "overwrite"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ant-media/StreamApp.git"
},
"author": "Ant Media",
"license": "ISC",
"bugs": {
"url": "https://github.com/ant-media/Ant-Media-Server/issues"
},
"homepage": "https://github.com/ant-media/StreamApp#readme",
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@microsoft/api-extractor": "^7.36.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"chai": "^4.3.7",
"codecov": "^3.8.3",
"copy-files-from-to": "^3.9.0",
"eslint": "^8.9.0",
"jsdoc": "^3.6.10",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-sinon": "^1.0.5",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"rollup": "^3.21.2",
"rollup-plugin-import-css": "^3.4.0",
"sinon": "^15.0.4",
"typescript": "^5.1.3"
},
"dependencies": {
"@mediapipe/selfie_segmentation": "^0.1.1675465747",
"url": "^0.11.1"
},
"_comment": "url polyfill is added as compatibility with webpack > 5 because webpack > 5 does not include url polyfill by default. webrtc_adaptor uses url as import.meta.url"
}