@ppodds/nhentai-api
Version:
nhentai api types
55 lines (54 loc) • 1.47 kB
JSON
{
"name": "@ppodds/nhentai-api",
"version": "0.0.1",
"description": "nhentai api types",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"dev": "npm run clean && tsc --watch",
"clean": "rimraf lib/*",
"format": "prettier --write src/**/*.{ts,js,json}",
"lint": "eslint -c .eslintrc.js src/**/*.ts",
"lint-fix": "eslint -c .eslintrc.js src/**/*.ts --fix",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"lint-staged": {
"*.{ts,js,cjs,mjs}": [
"prettier --write",
"eslint -c .eslintrc.js --fix"
]
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ppodds/nhentai-api.git"
},
"keywords": [
"nhentai",
"types"
],
"author": "ppodds",
"license": "MIT",
"bugs": {
"url": "https://github.com/ppodds/nhentai-api/issues"
},
"homepage": "https://github.com/ppodds/nhentai-api#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
}
}