-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@venizia/lib",
"version": "0.0.0",
"description": "High-performance TypeScript server infrastructure framework combining LoopBack 4 enterprise patterns (IoC, Repositories, Decorators) with Hono speed (~140k req/s). Built on Drizzle ORM, Zod validation, and convention-based bootstrapping for Bun and Node.js.",
"keywords": [
"backend",
"bun",
"decorator",
"dependency-injection",
"drizzle-orm",
"enterprise",
"framework",
"hono",
"ignis",
"inversion-of-control",
"monorepo",
"nodejs",
"openapi",
"postgresql",
"repository-pattern",
"rest-api",
"server",
"swagger",
"typescript",
"venizia"
],
"homepage": "https://venizia-ai.github.io/ignis",
"repository": {
"type": "git",
"url": "git+https://github.com/VENIZIA-AI/ignis.git"
},
"bugs": {
"url": "https://github.com/VENIZIA-AI/ignis/issues"
},
"author": {
"name": "VENIZIA AI Developer",
"email": "developer@venizia.ai",
"url": "https://venizia.ai"
},
"license": "MIT",
"private": true,
"engines": {
"bun": ">=1.3"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"force-update": "bun run --filter \"@venizia/*\" force-update",
"docs:dev": "bun run --filter \"@venizia/ignis-docs\" docs:dev",
"mcp:dev": "bun run --filter \"@venizia/ignis-docs\" mcp:dev"
}
}