34 lines
828 B
JSON
34 lines
828 B
JSON
{
|
|
"name": "@kamyu/nfc2card",
|
|
"version": "0.1.1",
|
|
"description": "Konmai Card NFC ID Encoder/Decoder",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"build": "tsc",
|
|
"lint": "eslint src/**/*.ts",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"keywords": [],
|
|
"author": "Byeon Seongun <kamyu@kamyu.me>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/kamyu1537/nfc2card/issues"
|
|
},
|
|
"homepage": "https://github.com/kamyu1537/nfc2card#readme",
|
|
"devDependencies": {
|
|
"@types/node": "^17.0.21",
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
"@typescript-eslint/parser": "^5.14.0",
|
|
"eslint": "^8.11.0",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.3.5",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.ts": [
|
|
"eslint --fix"
|
|
]
|
|
}
|
|
}
|