Merge pull request #59 from TxtDot/iconv-fix

Fix: install iconv-lite
This commit is contained in:
Artemy Egorov 2023-09-21 10:15:48 +03:00 committed by GitHub
commit e6b61fb814
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 13 deletions

27
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "txtdot",
"version": "1.3.0",
"version": "1.3.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "txtdot",
"version": "1.3.0",
"version": "1.3.1",
"license": "MIT",
"dependencies": {
"@fastify/static": "^6.10.2",
@ -18,6 +18,7 @@
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"fastify": "^4.21.0",
"iconv-lite": "^0.6.3",
"ip-range-check": "^0.2.0",
"jsdom": "^22.1.0",
"json-schema-to-ts": "^2.9.2",
@ -1933,6 +1934,17 @@
"node": ">= 6"
}
},
"node_modules/iconv-lite": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
"dependencies": {
"safer-buffer": ">= 2.1.2 < 3.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ieee754": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
@ -3266,17 +3278,6 @@
"node": ">=12"
}
},
"node_modules/whatwg-encoding/node_modules/iconv-lite": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
"dependencies": {
"safer-buffer": ">= 2.1.2 < 3.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/whatwg-mimetype": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz",

View File

@ -14,6 +14,7 @@
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"fastify": "^4.21.0",
"iconv-lite": "^0.6.3",
"ip-range-check": "^0.2.0",
"jsdom": "^22.1.0",
"json-schema-to-ts": "^2.9.2",