@hestjs/demo 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +387 -0
- package/dist/index.js +18829 -0
- package/package.json +61 -0
package/package.json
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
{
|
2
|
+
"name": "@hestjs/demo",
|
3
|
+
"version": "0.1.0",
|
4
|
+
"description": "HestJS Demo Application - A demonstration of HestJS framework capabilities",
|
5
|
+
"main": "dist/index.js",
|
6
|
+
"types": "dist/index.d.ts",
|
7
|
+
"files": [
|
8
|
+
"dist",
|
9
|
+
"README.md"
|
10
|
+
],
|
11
|
+
"scripts": {
|
12
|
+
"dev": "bun run --hot src/index.ts",
|
13
|
+
"build": "bun build src/index.ts --outdir=dist --target=bun --format=esm --splitting",
|
14
|
+
"build:external": "bun build src/index.ts --outdir=dist --target=bun --format=esm --external reflect-metadata",
|
15
|
+
"build:binary": "bun build src/index.ts --compile --outfile=dist/hest-demo",
|
16
|
+
"start": "bun run dist/index.js | pino-pretty",
|
17
|
+
"start:binary": "./dist/hest-demo | pino-pretty",
|
18
|
+
"start:prod": "NODE_ENV=production bun run dist/index.js | pino-pretty",
|
19
|
+
"clean": "rm -rf dist",
|
20
|
+
"check-types": "tsc --noEmit"
|
21
|
+
},
|
22
|
+
"repository": {
|
23
|
+
"type": "git",
|
24
|
+
"url": "https://github.com/aqz236/hestjs-demo.git"
|
25
|
+
},
|
26
|
+
"homepage": "https://github.com/aqz236/hestjs-demo#readme",
|
27
|
+
"bugs": {
|
28
|
+
"url": "https://github.com/aqz236/hestjs-demo/issues"
|
29
|
+
},
|
30
|
+
"author": "aqz236",
|
31
|
+
"license": "MIT",
|
32
|
+
"dependencies": {
|
33
|
+
"@hestjs/core": "^0.1.0",
|
34
|
+
"@hestjs/eslint-config": "^0.1.1",
|
35
|
+
"@hestjs/typescript-config": "^0.1.0",
|
36
|
+
"@hestjs/validation": "^0.1.4",
|
37
|
+
"hono": "^4.8.9",
|
38
|
+
"reflect-metadata": "^0.2.2"
|
39
|
+
},
|
40
|
+
"devDependencies": {
|
41
|
+
"@types/bun": "latest",
|
42
|
+
"jiti": "^2.5.1",
|
43
|
+
"typescript": "5.8.3"
|
44
|
+
},
|
45
|
+
"exports": {
|
46
|
+
".": {
|
47
|
+
"import": "./dist/index.js",
|
48
|
+
"require": "./dist/index.js",
|
49
|
+
"types": "./dist/index.d.ts"
|
50
|
+
}
|
51
|
+
},
|
52
|
+
"keywords": [
|
53
|
+
"hestjs",
|
54
|
+
"demo",
|
55
|
+
"framework",
|
56
|
+
"typescript",
|
57
|
+
"bun",
|
58
|
+
"hono",
|
59
|
+
"validation"
|
60
|
+
]
|
61
|
+
}
|