File size: 733 Bytes
10695bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | {
"name": "eu4-han-convert",
"version": "1.0.0",
"description": "ParaTranz-compatible EU4 Chinese localisation encoding converter",
"type": "module",
"exports": {
".": "./src/index.js"
},
"bin": {
"eu4-han-convert": "./bin/eu4-han-convert.js",
"eu4hc": "./bin/eu4-han-convert.js"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test",
"check": "node --check bin/eu4-han-convert.js && node --check src/index.js"
},
"engines": {
"node": ">=20"
},
"keywords": [
"eu4",
"europa-universalis-iv",
"localisation",
"paratranz",
"encoding"
],
"license": "MIT",
"dependencies": {
"iconv-lite": "0.7.3"
}
}
|