* feat: kboot package * feat: kboot package * fix: wait 1 sec after device is available * test: fix unit test * refactor: clean unused codes * doc: improve readme.md * doc: improve readme.md * test: fix unit test * chore: fix lint settings * style: fix linting issues
28 lines
672 B
JSON
28 lines
672 B
JSON
{
|
|
"name": "kboot",
|
|
"main": "dist/index.js",
|
|
"version": "0.0.0",
|
|
"description": "Javascript implementation of the Kinetis Bootloader protocol",
|
|
"author": "Ultimate Gadget Laboratories",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:UltimateHackingKeyboard/agent.git"
|
|
},
|
|
"license": "GPL-3.0",
|
|
"engines": {
|
|
"node": ">=8.12.0 <9.0.0",
|
|
"npm": ">=6.4.1 <7.0.0"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.1.1",
|
|
"byte-data": "^16.0.3",
|
|
"tslib": "^1.9.3",
|
|
"node-hid": ">= 0.7.3"
|
|
},
|
|
"peer-dependencies": {},
|
|
"scripts": {
|
|
"build": "tsc --project ./src/tsconfig.json",
|
|
"lint": "tslint --project tsconfig.json"
|
|
}
|
|
}
|