-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.52 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
80
81
82
83
{
"name": "lecture-player",
"version": "3.0.0",
"description": "Web player for lecture/conference/classroom recordings",
"private": true,
"type": "module",
"scripts": {
"build:prod": "node esbuild.js",
"build:dev": "node esbuild.js --dev --platform=browser",
"webpack:dev": "webpack --config webpack.dev.js",
"webpack:prod": "webpack --config webpack.prod.js",
"webpack:watch": "webpack --config webpack.dev.js --watch",
"watch": "node esbuild.js --dev --watch",
"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"test": "wtr --coverage",
"test:watch": "wtr --watch"
},
"keywords": [
"recording",
"stream",
"pdf",
"player",
"viewer"
],
"author": "Alex Andres",
"license": "Apache-2.0",
"devDependencies": {
"@alienfast/i18next-loader": "^2.0.2",
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/plugin-proposal-decorators": "^7.24.6",
"@babel/plugin-transform-class-properties": "^7.24.6",
"@babel/plugin-transform-object-rest-spread": "^7.24.6",
"@babel/plugin-transform-runtime": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@open-wc/building-rollup": "^3.0.2",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-replace": "^5.0.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@web/dev-server-esbuild": "^1.0.2",
"@web/dev-server-rollup": "^0.6.3",
"@web/test-runner": "^0.18.2",
"@web/test-runner-playwright": "^0.11.0",
"babel-loader": "^9.1.3",
"clean-css": "^5.3.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"esbuild-plugin-babel": "^0.2.3",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-lit-css": "^3.0.0",
"esbuild-plugin-umd-wrapper": "^2.0.0",
"eslint": "^8.57.0",
"eslint-plugin-lit": "^1.14.0",
"jspdf": "^2.5.1",
"lit-css-loader": "^3.0.0",
"mini-css-extract-plugin": "^2.9.0",
"rollup-plugin-lit-css": "^5.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@adobe/lit-mobx": "^2.2.2",
"@shoelace-style/shoelace": "^2.15.1",
"@stomp/stompjs": "^7.0.0",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"janus-gateway": "^1.2.3",
"lit": "^3.1.3",
"mobx": "^6.12.3",
"pdfjs-dist": "^4.3.136",
"typescript-event-target": "^1.1.1"
}
}