-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.28 KB
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
{
"name": "lecture-player",
"version": "3.0.0",
"description": "Web player for lecture/conference/classroom recordings",
"private": true,
"type": "module",
"scripts": {
"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.28.3",
"@babel/core": "^7.28.4",
"@babel/plugin-proposal-decorators": "^7.24.6",
"@babel/plugin-transform-class-properties": "^7.24.6",
"@babel/plugin-transform-object-rest-spread": "^7.28.4",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.24.6",
"@open-wc/building-rollup": "^3.0.2",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.19.22",
"@web/dev-server-esbuild": "^1.0.4",
"@web/dev-server-import-maps": "^0.2.1",
"@web/test-runner": "^0.20.2",
"@web/test-runner-playwright": "^0.11.0",
"babel-loader": "^10.0.0",
"baseline-browser-mapping": "^2.9.11",
"clean-css": "^5.3.3",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"eslint": "^9.38.0",
"eslint-plugin-lit": "^2.1.1",
"jspdf": "^3.0.3",
"lit-css-loader": "^4.0.0",
"mini-css-extract-plugin": "^2.9.4",
"rollup-plugin-lit-css": "^6.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@adobe/lit-mobx": "^2.2.2",
"@shoelace-style/shoelace": "^2.20.1",
"@stomp/stompjs": "^7.2.1",
"i18next": "^25.6.0",
"i18next-browser-languagedetector": "^8.2.0",
"janus-gateway": "^1.3.1",
"lit": "^3.3.1",
"mobx": "^6.15.0",
"pdfjs-dist": "^4.3.136",
"typescript-event-target": "^1.1.1"
}
}