exiftool-vendored 30.2.0 → 30.4.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 +33 -8
- package/CLAUDE.md +2 -1
- package/README.md +171 -454
- package/RELEASE.md +34 -13
- package/dist/DefaultExifToolOptions.js +2 -0
- package/dist/DefaultExifToolOptions.js.map +1 -1
- package/dist/ExifTool.d.ts +72 -29
- package/dist/ExifTool.js +109 -11
- package/dist/ExifTool.js.map +1 -1
- package/dist/ExifToolOptions.d.ts +14 -0
- package/dist/ExifToolOptions.js.map +1 -1
- package/dist/StrEnum.d.ts +1 -1
- package/dist/StrEnum.js +2 -4
- package/dist/StrEnum.js.map +1 -1
- package/dist/Tags.d.ts +12512 -2512
- package/dist/Tags.js +3 -3
- package/dist/Tags.js.map +1 -1
- package/dist/WriteTags.d.ts +3 -4
- package/eslint.config.mjs +8 -1
- package/package.json +43 -30
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored",
|
|
3
|
-
"version": "30.
|
|
3
|
+
"version": "30.4.0",
|
|
4
4
|
"description": "Efficient, cross-platform access to ExifTool",
|
|
5
5
|
"main": "./dist/ExifTool.js",
|
|
6
6
|
"types": "./dist/ExifTool.d.ts",
|
|
@@ -9,8 +9,10 @@
|
|
|
9
9
|
"url": "https://github.com/photostructure/exiftool-vendored.js/issues"
|
|
10
10
|
},
|
|
11
11
|
"type": "commonjs",
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=20.0.0"
|
|
14
|
+
},
|
|
12
15
|
"scripts": {
|
|
13
|
-
"u": "npm-check-updates --upgrade --install always",
|
|
14
16
|
"clean": "rimraf lib dist coverage .nyc_output",
|
|
15
17
|
"precompile": "npm run clean",
|
|
16
18
|
"compile": "tsc",
|
|
@@ -22,21 +24,30 @@
|
|
|
22
24
|
"prepare": "npm run compile",
|
|
23
25
|
"#lint": "the node.js GitHub Action will run `lint` on one node before running `test` with the matrix",
|
|
24
26
|
"lint": "eslint",
|
|
25
|
-
"fmt": "prettier --write
|
|
27
|
+
"fmt": "prettier --write .",
|
|
26
28
|
"pretest": "npm run compile",
|
|
27
29
|
"test": "mocha 'dist/*.spec.js'",
|
|
28
|
-
"docs:build": "typedoc
|
|
29
|
-
"docs:serve": "npm run docs:build &&
|
|
30
|
+
"docs:build": "typedoc",
|
|
31
|
+
"docs:serve": "npm run docs:build && npx serve build/docs",
|
|
30
32
|
"docs": "npm run docs:serve",
|
|
33
|
+
"update": "run-p update:*",
|
|
34
|
+
"update:deps": "npm-check-updates --upgrade && npm install && npm audit --production",
|
|
35
|
+
"install:pinact": "go install github.com/suzuki-shunsuke/pinact/cmd/pinact@latest",
|
|
36
|
+
"update:actions": "pinact run -u",
|
|
37
|
+
"precommit": "run-s clean update fmt lint docs:build test",
|
|
31
38
|
"release": "release-it"
|
|
32
39
|
},
|
|
33
40
|
"repository": {
|
|
34
41
|
"type": "git",
|
|
35
|
-
"url": "https://github.com/photostructure/exiftool-vendored.js.git"
|
|
42
|
+
"url": "git+https://github.com/photostructure/exiftool-vendored.js.git"
|
|
36
43
|
},
|
|
37
44
|
"release-it": {
|
|
38
45
|
"hooks": {
|
|
39
|
-
"before:init":
|
|
46
|
+
"before:init": [
|
|
47
|
+
"npm ci",
|
|
48
|
+
"npm run clean",
|
|
49
|
+
"npm run compile"
|
|
50
|
+
]
|
|
40
51
|
},
|
|
41
52
|
"src": {
|
|
42
53
|
"tagName": "v%s",
|
|
@@ -52,9 +63,11 @@
|
|
|
52
63
|
"release": true
|
|
53
64
|
},
|
|
54
65
|
"npm": {
|
|
55
|
-
"publish": true
|
|
66
|
+
"publish": true,
|
|
67
|
+
"skipChecks": true
|
|
56
68
|
}
|
|
57
69
|
},
|
|
70
|
+
"# release-it.npm.skipChecks": "Required for OIDC Trusted Publishing - bypasses npm auth checks since OIDC handles authentication automatically. See: https://github.com/release-it/release-it/issues/1244 and https://docs.npmjs.com/trusted-publishers#supported-cicd-providers",
|
|
58
71
|
"keywords": [
|
|
59
72
|
"ExifTool",
|
|
60
73
|
"EXIF",
|
|
@@ -81,61 +94,61 @@
|
|
|
81
94
|
]
|
|
82
95
|
},
|
|
83
96
|
"devDependencies": {
|
|
84
|
-
"@eslint/js": "^9.
|
|
97
|
+
"@eslint/js": "^9.34.0",
|
|
85
98
|
"@types/chai": "^4.3.16",
|
|
86
99
|
"@types/chai-as-promised": "^8.0.1",
|
|
87
100
|
"@types/chai-subset": "^1.3.6",
|
|
88
101
|
"@types/deep-eql": "^4.0.2",
|
|
89
|
-
"@types/globule": "^1.1.
|
|
102
|
+
"@types/globule": "^1.1.10",
|
|
90
103
|
"@types/he": "^1.2.3",
|
|
91
104
|
"@types/mocha": "^10.0.10",
|
|
92
|
-
"@types/node": "^
|
|
105
|
+
"@types/node": "^24.3.0",
|
|
93
106
|
"@types/progress": "^2.0.7",
|
|
94
107
|
"@types/source-map-support": "^0.5.10",
|
|
95
108
|
"@types/tmp": "^0.2.6",
|
|
96
109
|
"@types/xmldom": "^0.1.34",
|
|
97
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
98
|
-
"@typescript-eslint/parser": "^8.
|
|
110
|
+
"@typescript-eslint/eslint-plugin": "^8.41.0",
|
|
111
|
+
"@typescript-eslint/parser": "^8.41.0",
|
|
99
112
|
"@xmldom/xmldom": "^0.9.8",
|
|
100
113
|
"chai": "^4.5.0",
|
|
101
114
|
"chai-as-promised": "^7.1.2",
|
|
102
115
|
"deep-eql": "^4.1.4",
|
|
103
|
-
"eslint": "^9.
|
|
104
|
-
"eslint-plugin-import": "^2.
|
|
116
|
+
"eslint": "^9.34.0",
|
|
117
|
+
"eslint-plugin-import": "^2.32.0",
|
|
105
118
|
"eslint-plugin-node": "^11.1.0",
|
|
106
119
|
"eslint-plugin-redos": "^4.5.0",
|
|
107
|
-
"eslint-plugin-regexp": "^2.
|
|
120
|
+
"eslint-plugin-regexp": "^2.10.0",
|
|
108
121
|
"extract-zip": "^2.0.1",
|
|
109
122
|
"geo-tz": "^8.1.4",
|
|
110
|
-
"globals": "^16.
|
|
123
|
+
"globals": "^16.3.0",
|
|
111
124
|
"globule": "^1.3.4",
|
|
112
125
|
"mocha": "^10.8.2",
|
|
113
|
-
"npm-check-updates": "^18.0.
|
|
126
|
+
"npm-check-updates": "^18.0.3",
|
|
114
127
|
"npm-run-all": "^4.1.5",
|
|
115
|
-
"prettier": "^3.
|
|
116
|
-
"prettier-plugin-organize-imports": "^4.
|
|
128
|
+
"prettier": "^3.6.2",
|
|
129
|
+
"prettier-plugin-organize-imports": "^4.2.0",
|
|
117
130
|
"progress": "^2.0.3",
|
|
118
|
-
"release-it": "^19.0.
|
|
131
|
+
"release-it": "^19.0.4",
|
|
119
132
|
"rimraf": "^5.0.9",
|
|
120
133
|
"serve": "^14.2.4",
|
|
121
134
|
"source-map-support": "^0.5.21",
|
|
122
|
-
"tmp": "^0.2.
|
|
135
|
+
"tmp": "^0.2.5",
|
|
123
136
|
"ts-node": "^10.9.2",
|
|
124
|
-
"typedoc": "^0.28.
|
|
125
|
-
"typescript": "^5.
|
|
126
|
-
"typescript-eslint": "^8.
|
|
137
|
+
"typedoc": "^0.28.11",
|
|
138
|
+
"typescript": "^5.9.2",
|
|
139
|
+
"typescript-eslint": "^8.41.0",
|
|
127
140
|
"xpath": "^0.0.34"
|
|
128
141
|
},
|
|
129
142
|
"dependencies-note": "@types/luxon is a proper dependency, not devDependency, as our exported TypeScript typings reference luxon types. See <https://github.com/photostructure/exiftool-vendored.js/pull/108>",
|
|
130
143
|
"dependencies": {
|
|
131
144
|
"@photostructure/tz-lookup": "^11.2.0",
|
|
132
|
-
"@types/luxon": "^3.
|
|
133
|
-
"batch-cluster": "^
|
|
145
|
+
"@types/luxon": "^3.7.1",
|
|
146
|
+
"batch-cluster": "^15.0.1",
|
|
134
147
|
"he": "^1.2.0",
|
|
135
|
-
"luxon": "^3.
|
|
148
|
+
"luxon": "^3.7.1"
|
|
136
149
|
},
|
|
137
150
|
"optionalDependencies": {
|
|
138
|
-
"exiftool-vendored.exe": "13.
|
|
139
|
-
"exiftool-vendored.pl": "13.
|
|
151
|
+
"exiftool-vendored.exe": "13.34.0",
|
|
152
|
+
"exiftool-vendored.pl": "13.34.0"
|
|
140
153
|
}
|
|
141
154
|
}
|