-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathpackage.json
69 lines (69 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
{
"name": "amazon-kinesis-video-streams-webrtc",
"version": "2.3.2",
"description": "Amazon Kinesis Video Streams WebRTC SDK for JavaScript.",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-js.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"dist/**/*",
"examples/**/*",
"LICENSE.txt",
"NOTICE.txt"
],
"scripts": {
"integ-server": "ws -p 3000",
"test": "jest --runInBand",
"test-watch": "jest --watch",
"build-all": "npm run build-commonjs && npm run build-debug && npm run build-dist",
"build-commonjs": "tsc -p tsconfig.json",
"build-debug": "webpack --config webpack.debug.config.js",
"build-dist": "webpack --config webpack.dist.config.js",
"copy-examples-to-dist": "cp -r examples dist",
"develop": "webpack-dev-server --config webpack.dev.config.js",
"lint": "eslint 'src/**/*.{js,ts}'",
"release": "npm run lint && npm run test && npm run build-all && npm run copy-examples-to-dist"
},
"author": "Divya Sampath Kumar <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-kvs-webrtc": "file:eslint",
"eslint-plugin-prettier": "^5.2.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"license-webpack-plugin": "^4.0.0",
"prettier": "^3.4.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.0.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"isomorphic-webcrypto": "^2.3.6",
"jsdom": "^26.0.0",
"tslib": "^2.8.1",
"ws": "^8.14.2"
},
"overrides": {
"qs": "6.7.3",
"xml2js": "^0.5.0",
"json5": "^2.2.3",
"semver": ">=7.5.2",
"@types/babel__traverse": "7.18.2",
"@types/express-serve-static-core": "4.17.29"
}
}