spiegel-keyman/common/tools/hextobin/package.json
Eberhard Beilharz 3056128c14
chore(common): create flag file without node
Addresses code review comments.
2024-09-30 14:51:24 +02:00

22 lines
401 B
JSON

{
"name": "@keymanapp/hextobin",
"description": "hextobin conversion tool",
"type": "module",
"private": true,
"keywords": [
"keyman",
"hex",
"binary"
],
"license": "MIT",
"dependencies": {
"commander": "^5.1.0"
},
"main": "build/index.js",
"bin": {
"hextobin": "build/hextobin.js"
},
"scripts": {
"postinstall": "echo configured > .configured"
}
}