mediatuna 1.22.0 → 1.22.2

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.
Files changed (1) hide show
  1. package/package.json +12 -12
package/package.json CHANGED
@@ -1,12 +1,21 @@
1
1
  {
2
2
  "name": "mediatuna",
3
- "version": "1.22.0",
3
+ "version": "1.22.2",
4
4
  "type": "module",
5
5
  "description": "Make sure the old files can still play. Local convert to MP4 and MP3, dates kept.",
6
6
  "main": "index.js",
7
7
  "bin": {
8
8
  "mediatuna": "index.js"
9
9
  },
10
+ "scripts": {
11
+ "start": "node index.js",
12
+ "convert": "node index.js",
13
+ "test": "node --test test/**/*.test.js",
14
+ "test:ffmpeg": "node --test test/integration/**/*.test.js",
15
+ "site:dev": "pnpm --dir site dev",
16
+ "site:build": "pnpm --dir site build",
17
+ "ship": "pnpm --dir site run ship"
18
+ },
10
19
  "dependencies": {
11
20
  "cli-progress": "^3.12.0",
12
21
  "glob": "^11.0.0"
@@ -35,14 +44,5 @@
35
44
  "index.js",
36
45
  "lib",
37
46
  "skills"
38
- ],
39
- "scripts": {
40
- "start": "node index.js",
41
- "convert": "node index.js",
42
- "test": "node --test test/**/*.test.js",
43
- "test:ffmpeg": "node --test test/integration/**/*.test.js",
44
- "site:dev": "pnpm --dir site dev",
45
- "site:build": "pnpm --dir site build",
46
- "ship": "pnpm --dir site run ship"
47
- }
48
- }
47
+ ]
48
+ }