honestjs
Version:
HonestJS - a modern web framework built on top of Hono
68 lines (67 loc) • 1.62 kB
JSON
{
"name": "honestjs",
"description": "HonestJS - a modern web framework built on top of Hono",
"version": "0.1.5",
"author": "Orkhan Karimov <karimovok1@gmail.com> (https://github.com/kerimovok)",
"repository": {
"type": "git",
"url": "git+https://github.com/honestjs/honest.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/bun": "^1.2.19",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "3.6.2",
"typescript-eslint": "^8.37.0"
},
"peerDependencies": {
"hono": "^4.8.5",
"typescript": "^5.8.3",
"reflect-metadata": "^0.2.2"
},
"files": [
"dist"
],
"homepage": "https://github.com/honestjs/honest",
"keywords": [
"nodejs",
"bun",
"deno",
"javascript",
"typescript",
"node",
"framework",
"web-framework",
"hono",
"nest",
"honest"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"clean": "rm -rf dist",
"prepare": "husky",
"build": "bun run clean && bun build ./src/index.ts --outdir=dist --target=node --minify --external hono --external reflect-metadata && bun run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"lint-staged": {
"**/*.{js,mjs,cjs,ts,mts,cts}": [
"eslint --fix",
"prettier --write"
]
},
"type": "module",
"types": "dist/index.d.ts"
}