@npo/player-video-ui 2.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +3 -0
- package/dist/npoplayer-video-ui.es.js +5897 -0
- package/dist/npoplayer-video-ui.es.js.map +1 -0
- package/dist/npoplayer-video-ui.umd.js +5901 -0
- package/dist/npoplayer-video-ui.umd.js.map +1 -0
- package/dist/style.css +3365 -0
- package/package.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@npo/player-video-ui",
|
|
3
|
+
"version": "2.0.0-beta.0",
|
|
4
|
+
"description": "A supplementary UI module for the video implementation of NPO Player.",
|
|
5
|
+
"author": "NPO",
|
|
6
|
+
"contributors": [
|
|
7
|
+
"Sven van der Leest",
|
|
8
|
+
"Arjan Kruithof",
|
|
9
|
+
"Michel Groot"
|
|
10
|
+
],
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "dist/npoplayer-video-ui",
|
|
13
|
+
"types": "dist/main.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/npoplayer-video-ui.es.js",
|
|
17
|
+
"require": "./dist/npoplayer-video-ui.umd.js",
|
|
18
|
+
"types": "./dist/main.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./dist/style.css": {
|
|
21
|
+
"default": "./dist/style.css"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist/**/*",
|
|
26
|
+
"dist/style.css"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"test": "jest --runInBand",
|
|
30
|
+
"test:ci": "jest --collectCoverage",
|
|
31
|
+
"build:web-styles": "sass src/style/npoplayer.scss:dist/npoplayer.css --style=compressed && postcss dist/npoplayer.css --use autoprefixer postcss-import -o dist/npoplayer.css",
|
|
32
|
+
"dev": "vite build --watch --mode watch",
|
|
33
|
+
"build": "tsc && vite build && npm run build:web-styles",
|
|
34
|
+
"lint": "eslint src --fix",
|
|
35
|
+
"lint:scss": "stylelint '**/*.scss' && prettier --write '**/*.scss'"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@npo/player-ui-core": "^2.0.0-beta.0"
|
|
39
|
+
},
|
|
40
|
+
"overrides": {
|
|
41
|
+
"form-data": ">=4.0.4"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@npo/player-types": "^2.0.0-beta.0",
|
|
45
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
46
|
+
"@types/jest": "^29.5.14",
|
|
47
|
+
"@types/node": "^22.19.15",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
|
49
|
+
"@typescript-eslint/parser": "^8.57.2",
|
|
50
|
+
"autoprefixer": "^10.4.27",
|
|
51
|
+
"baseline-browser-mapping": "^2.10.12",
|
|
52
|
+
"eslint": "^8.57.1",
|
|
53
|
+
"eslint-config-prettier": "^9.1.2",
|
|
54
|
+
"eslint-plugin-import": "^2.27.5",
|
|
55
|
+
"eslint-plugin-jest-dom": "^5.4.0",
|
|
56
|
+
"eslint-plugin-n": "^15.7.0",
|
|
57
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
58
|
+
"eslint-plugin-promise": "^6.6.0",
|
|
59
|
+
"eslint-plugin-sonarjs": "^0.23.0",
|
|
60
|
+
"eslint-plugin-testing-library": "^5.11.1",
|
|
61
|
+
"eslint-plugin-unicorn": "^52.0.0",
|
|
62
|
+
"jest": "^29.7.0",
|
|
63
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
64
|
+
"jest-fetch-mock": "^3.0.3",
|
|
65
|
+
"jest-sonar-reporter": "^2.0.0",
|
|
66
|
+
"jest-transform-css": "^6.0.1",
|
|
67
|
+
"postcss": "^8.5.8",
|
|
68
|
+
"postcss-cli": "^11.0.0",
|
|
69
|
+
"postcss-import": "^16.1.0",
|
|
70
|
+
"postcss-loader": "^8.2.1",
|
|
71
|
+
"postcss-scss": "^4.0.9",
|
|
72
|
+
"prettier": "3.8.1",
|
|
73
|
+
"sass": "^1.98.0",
|
|
74
|
+
"stylelint": "^16.26.1",
|
|
75
|
+
"stylelint-config-standard-scss": "^14.0.0",
|
|
76
|
+
"ts-jest": "^29.4.6",
|
|
77
|
+
"ts-node": "^10.9.2",
|
|
78
|
+
"typescript": "^5.9.3",
|
|
79
|
+
"vite": "^5.4.21",
|
|
80
|
+
"vite-plugin-dts": "^4.0.3"
|
|
81
|
+
},
|
|
82
|
+
"keywords": [
|
|
83
|
+
"npo"
|
|
84
|
+
],
|
|
85
|
+
"license": "MIT"
|
|
86
|
+
}
|