create-hest-app
Version:
Create HestJS-powered applications with one command
63 lines (62 loc) • 1.95 kB
JSON
{
"name": "@hestjs/demo",
"version": "0.1.1",
"description": "HestJS Demo Application - A demonstration of HestJS framework capabilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "bun run --hot src/index.ts",
"build": "bun build src/index.ts --outdir=dist --target=bun --format=esm --splitting --external pino --external pino-pretty --external sonic-boom --external thread-stream",
"build:external": "bun build src/index.ts --outdir=dist --target=bun --format=esm --external reflect-metadata --external pino --external pino-pretty --external sonic-boom --external thread-stream",
"build:binary": "bun build src/index.ts --compile --outfile=dist/hest-demo --external pino-pretty",
"start": "bun run dist/index.js | pino-pretty",
"start:binary": "./dist/hest-demo | pino-pretty",
"start:prod": "NODE_ENV=production bun run dist/index.js | pino-pretty",
"clean": "rm -rf dist",
"check-types": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/aqz236/hestjs-demo.git"
},
"homepage": "https://github.com/aqz236/hestjs-demo#readme",
"bugs": {
"url": "https://github.com/aqz236/hestjs-demo/issues"
},
"author": "aqz236",
"license": "MIT",
"dependencies": {
"@hestjs/core": "^0.2.0",
"@hestjs/logger": "^0.1.5",
"@hestjs/validation": "^0.1.5",
"hono": "^4.8.10",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@hestjs/eslint-config": "^0.1.1",
"@hestjs/typescript-config": "^0.1.0",
"@types/bun": "^1.2.19",
"jiti": "^2.5.1",
"typescript": "5.8.3"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"hestjs",
"demo",
"framework",
"typescript",
"bun",
"hono",
"validation"
]
}