exiftool-vendored 19.0.0 → 21.0.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/CHANGELOG.md +21 -0
- package/dist/BinaryExtractionTask.js +1 -1
- package/dist/BinaryExtractionTask.js.map +1 -1
- package/dist/DateTime.d.ts +4 -1
- package/dist/DateTime.js +8 -5
- package/dist/DateTime.js.map +1 -1
- package/dist/ExifDateTime.d.ts +9 -2
- package/dist/ExifDateTime.js +75 -43
- package/dist/ExifDateTime.js.map +1 -1
- package/dist/ExifTool.d.ts +1 -1
- package/dist/ExifTool.js.map +1 -1
- package/dist/ReadRawTask.js.map +1 -1
- package/dist/ReadTask.js +1 -1
- package/dist/ReadTask.js.map +1 -1
- package/dist/Tags.d.ts +144 -140
- package/package.json +18 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.0.0",
|
|
4
4
|
"description": "Efficient, cross-platform access to ExifTool",
|
|
5
5
|
"main": "./dist/ExifTool.js",
|
|
6
6
|
"types": "./dist/ExifTool.d.ts",
|
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
"premktags": "yarn compile",
|
|
18
18
|
"mktags": "node dist/update/mktags.js",
|
|
19
19
|
"lint": "yarn eslint src --ext .ts",
|
|
20
|
+
"organize-imports": "find src -maxdepth 3 -name \\*.ts | grep -v node_modules | xargs --verbose --max-args=64 --max-procs=8 npx organize-imports-cli",
|
|
21
|
+
"preprettier": "yarn organize-imports",
|
|
20
22
|
"prettier": "prettier --write src/*.ts src/**/*.ts",
|
|
21
23
|
"pretest": "run-p lint compile",
|
|
22
24
|
"test": "mocha 'dist/*.spec.js'",
|
|
@@ -70,23 +72,23 @@
|
|
|
70
72
|
"@types/chai-as-promised": "^7.1.5",
|
|
71
73
|
"@types/chai-subset": "^1.3.3",
|
|
72
74
|
"@types/fs-extra": "^11.0.1",
|
|
73
|
-
"@types/globule": "^1.1.
|
|
74
|
-
"@types/he": "^1.
|
|
75
|
+
"@types/globule": "^1.1.5",
|
|
76
|
+
"@types/he": "^1.2.0",
|
|
75
77
|
"@types/mocha": "^10.0.1",
|
|
76
|
-
"@types/node": "^18.11.
|
|
78
|
+
"@types/node": "^18.11.19",
|
|
77
79
|
"@types/progress": "^2.0.5",
|
|
78
80
|
"@types/rimraf": "^3.0.2",
|
|
79
81
|
"@types/tar-fs": "^2.0.1",
|
|
80
82
|
"@types/tmp": "^0.2.3",
|
|
81
83
|
"@types/xmldom": "^0.1.31",
|
|
82
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
83
|
-
"@typescript-eslint/parser": "^5.
|
|
84
|
+
"@typescript-eslint/eslint-plugin": "^5.50.0",
|
|
85
|
+
"@typescript-eslint/parser": "^5.50.0",
|
|
84
86
|
"@xmldom/xmldom": "^0.8.6",
|
|
85
87
|
"chai": "^4.3.7",
|
|
86
88
|
"chai-as-promised": "^7.1.1",
|
|
87
89
|
"chai-subset": "^1.6.0",
|
|
88
|
-
"eslint": "^8.
|
|
89
|
-
"eslint-plugin-import": "^2.
|
|
90
|
+
"eslint": "^8.33.0",
|
|
91
|
+
"eslint-plugin-import": "^2.27.5",
|
|
90
92
|
"eslint-plugin-node": "^11.1.0",
|
|
91
93
|
"extract-zip": "^2.0.1",
|
|
92
94
|
"fs-extra": "^11.1.0",
|
|
@@ -94,26 +96,27 @@
|
|
|
94
96
|
"globule": "^1.3.4",
|
|
95
97
|
"mocha": "^10.2.0",
|
|
96
98
|
"npm-run-all": "^4.1.5",
|
|
97
|
-
"
|
|
99
|
+
"organize-imports-cli": "^0.10.0",
|
|
100
|
+
"prettier": "^2.8.3",
|
|
98
101
|
"progress": "^2.0.3",
|
|
99
|
-
"rimraf": "^
|
|
100
|
-
"serve": "^14.
|
|
102
|
+
"rimraf": "^4.1.2",
|
|
103
|
+
"serve": "^14.2.0",
|
|
101
104
|
"source-map-support": "^0.5.21",
|
|
102
105
|
"tmp": "^0.2.1",
|
|
103
106
|
"typedoc": "^0.23.24",
|
|
104
|
-
"typescript": "~4.9.
|
|
107
|
+
"typescript": "~4.9.5",
|
|
105
108
|
"xpath": "^0.0.32"
|
|
106
109
|
},
|
|
107
110
|
"dependencies-note": "@types/luxon is not a devDependency, as our exported TypeScript typings reference luxon types. See <https://github.com/photostructure/exiftool-vendored.js/pull/108>",
|
|
108
111
|
"dependencies": {
|
|
109
112
|
"@photostructure/tz-lookup": "^7.0.0",
|
|
110
113
|
"@types/luxon": "^3.2.0",
|
|
111
|
-
"batch-cluster": "^
|
|
114
|
+
"batch-cluster": "^12.0.0",
|
|
112
115
|
"he": "^1.2.0",
|
|
113
116
|
"luxon": "^3.2.1"
|
|
114
117
|
},
|
|
115
118
|
"optionalDependencies": {
|
|
116
|
-
"exiftool-vendored.exe": "12.
|
|
117
|
-
"exiftool-vendored.pl": "12.
|
|
119
|
+
"exiftool-vendored.exe": "12.55.0",
|
|
120
|
+
"exiftool-vendored.pl": "12.55.0"
|
|
118
121
|
}
|
|
119
122
|
}
|