vidply 1.0.3 → 1.0.4

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.
@@ -37,7 +37,7 @@
37
37
  "format": "esm"
38
38
  },
39
39
  "src/controls/ControlBar.js": {
40
- "bytes": 70888,
40
+ "bytes": 74623,
41
41
  "imports": [
42
42
  {
43
43
  "path": "src/utils/DOMUtils.js",
@@ -136,7 +136,7 @@
136
136
  "format": "esm"
137
137
  },
138
138
  "src/core/Player.js": {
139
- "bytes": 34580,
139
+ "bytes": 35845,
140
140
  "imports": [
141
141
  {
142
142
  "path": "src/utils/EventEmitter.js",
@@ -202,7 +202,7 @@
202
202
  "format": "esm"
203
203
  },
204
204
  "src/features/PlaylistManager.js": {
205
- "bytes": 10068,
205
+ "bytes": 17043,
206
206
  "imports": [
207
207
  {
208
208
  "path": "src/utils/DOMUtils.js",
@@ -265,7 +265,7 @@
265
265
  "bytesInOutput": 720
266
266
  },
267
267
  "src/controls/ControlBar.js": {
268
- "bytesInOutput": 35686
268
+ "bytesInOutput": 36302
269
269
  },
270
270
  "src/controls/CaptionManager.js": {
271
271
  "bytesInOutput": 3599
@@ -277,7 +277,7 @@
277
277
  "bytesInOutput": 12461
278
278
  },
279
279
  "src/core/Player.js": {
280
- "bytesInOutput": 16383
280
+ "bytesInOutput": 16746
281
281
  },
282
282
  "src/renderers/YouTubeRenderer.js": {
283
283
  "bytesInOutput": 4140
@@ -289,10 +289,10 @@
289
289
  "bytesInOutput": 5386
290
290
  },
291
291
  "src/features/PlaylistManager.js": {
292
- "bytesInOutput": 5245
292
+ "bytesInOutput": 8100
293
293
  }
294
294
  },
295
- "bytes": 123711
295
+ "bytes": 127545
296
296
  }
297
297
  }
298
298
  }
package/package.json CHANGED
@@ -1,54 +1,57 @@
1
- {
2
- "name": "vidply",
3
- "version": "1.0.3",
4
- "description": "Universal, accessible video & audio player with ES6 modules",
5
- "type": "module",
6
- "main": "dist/vidply.js",
7
- "module": "dist/vidply.esm.js",
8
- "files": [
9
- "dist",
10
- "src"
11
- ],
12
- "scripts": {
13
- "dev": "npx serve . -p 3000",
14
- "start": "npm run build:js && npm run build:css && npm run dev",
15
- "build": "npm run build:js && npm run build:css",
16
- "build:js": "node build/build.js",
17
- "build:css": "node build/build-css.js",
18
- "watch": "node build/watch.js",
19
- "clean": "node build/clean.js"
20
- },
21
- "keywords": [
22
- "video",
23
- "player",
24
- "audio",
25
- "accessible",
26
- "wcag",
27
- "a11y",
28
- "html5",
29
- "youtube",
30
- "vimeo",
31
- "hls",
32
- "captions",
33
- "subtitles",
34
- "vanilla",
35
- "es6",
36
- "javascript"
37
- ],
38
- "author": "Matthias Peltzer",
39
- "license": "GPL-2.0-or-later",
40
- "repository": {
41
- "type": "git",
42
- "url": "git+https://github.com/MatthiasPeltzer/vidply.git"
43
- },
44
- "bugs": {
45
- "url": "https://github.com/MatthiasPeltzer/vidply/issues",
46
- "email": "vidply@mpeltzer.de"
47
- },
48
- "homepage": "https://matthiaspeltzer.github.io/vidply/",
49
- "devDependencies": {
50
- "esbuild": "^0.25.10",
51
- "clean-css": "^5.3.3"
52
- },
53
- "dependencies": {}
54
- }
1
+ {
2
+ "name": "vidply",
3
+ "version": "1.0.4",
4
+ "description": "Universal, accessible video & audio player with ES6 modules",
5
+ "type": "module",
6
+ "main": "dist/vidply.js",
7
+ "module": "dist/vidply.esm.js",
8
+ "files": [
9
+ "dist",
10
+ "src"
11
+ ],
12
+ "scripts": {
13
+ "dev": "npx serve . -p 3000",
14
+ "start": "npm run build:js && npm run build:css && npm run dev",
15
+ "build": "npm run build:js && npm run build:css",
16
+ "build:js": "node build/build.js",
17
+ "build:css": "node build/build-css.js",
18
+ "watch": "node build/watch.js",
19
+ "clean": "node build/clean.js"
20
+ },
21
+ "keywords": [
22
+ "video",
23
+ "player",
24
+ "audio",
25
+ "accessible",
26
+ "wcag",
27
+ "a11y",
28
+ "html5",
29
+ "youtube",
30
+ "vimeo",
31
+ "hls",
32
+ "captions",
33
+ "subtitles",
34
+ "vanilla",
35
+ "es6",
36
+ "javascript"
37
+ ],
38
+ "author": "Matthias Peltzer",
39
+ "license": "GPL-2.0-or-later",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/MatthiasPeltzer/vidply.git"
43
+ },
44
+ "bugs": {
45
+ "url": "https://github.com/MatthiasPeltzer/vidply/issues",
46
+ "email": "vidply@mpeltzer.de"
47
+ },
48
+ "homepage": "https://matthiaspeltzer.github.io/vidply/",
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "devDependencies": {
53
+ "esbuild": "^0.25.10",
54
+ "clean-css": "^5.3.3"
55
+ },
56
+ "dependencies": {}
57
+ }