@razvan11/paladin 1.0.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/LICENSE +21 -0
- package/README.md +15 -0
- package/dist/EnvValidator.d.ts +11 -0
- package/dist/app/app.d.ts +45 -0
- package/dist/components/LayoutView.d.ts +31 -0
- package/dist/container/container.d.ts +17 -0
- package/dist/functions/asset.d.ts +31 -0
- package/dist/functions/config.d.ts +1 -0
- package/dist/functions/controller.d.ts +59 -0
- package/dist/functions/database.d.ts +1 -0
- package/dist/functions/env.d.ts +1 -0
- package/dist/functions/inject.d.ts +1 -0
- package/dist/functions/render.d.ts +28 -0
- package/dist/functions/repository.d.ts +1 -0
- package/dist/functions/service.d.ts +1 -0
- package/dist/functions/validator.d.ts +1 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +33831 -0
- package/dist/logger/logger.d.ts +9 -0
- package/dist/types.d.ts +3 -0
- package/dist/utils/pretty-error.d.ts +2 -0
- package/package.json +64 -0
package/dist/types.d.ts
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@razvan11/paladin",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A Bun-based backend framework with decorators, dependency injection, and controller registration",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"bun",
|
|
7
|
+
"backend",
|
|
8
|
+
"framework",
|
|
9
|
+
"decorators",
|
|
10
|
+
"hono",
|
|
11
|
+
"inversify",
|
|
12
|
+
"dependency-injection"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": "Razvan",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/razvan/backend_framework"
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"module": "./dist/index.js",
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/index.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "bun run ./example/index.ts",
|
|
35
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target bun && bun run build:types",
|
|
36
|
+
"build:types": "tsc -p tsconfig.build.json",
|
|
37
|
+
"prepublishOnly": "bun run build",
|
|
38
|
+
"fmt": "bunx @biomejs/biome format --write",
|
|
39
|
+
"lint": "bunx @biomejs/biome lint --write",
|
|
40
|
+
"check": "bunx @biomejs/biome check"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@biomejs/biome": "^2.3.10",
|
|
44
|
+
"@types/bun": "latest",
|
|
45
|
+
"@types/react": "^19.2.7",
|
|
46
|
+
"@types/react-dom": "^19.2.3"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"typescript": "^5"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"chalk": "^5.6.2",
|
|
53
|
+
"class-validator": "^0.14.3",
|
|
54
|
+
"hono": "^4.11.1",
|
|
55
|
+
"inversify": "^7.10.8",
|
|
56
|
+
"pretty-error": "^4.0.0",
|
|
57
|
+
"react": "^19.2.3",
|
|
58
|
+
"react-dom": "^19.2.3",
|
|
59
|
+
"react-router": "^7.11.0",
|
|
60
|
+
"react-router-dom": "^7.11.0",
|
|
61
|
+
"reflect-metadata": "^0.2.2",
|
|
62
|
+
"zod": "^4.2.1"
|
|
63
|
+
}
|
|
64
|
+
}
|