@venizia/ignis 0.0.1-1
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/package.json +141 -0
package/package.json
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@venizia/ignis",
|
|
3
|
+
"version": "0.0.1-1",
|
|
4
|
+
"description": "JS/TS Server Infrastructure with Hono Framework",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"web",
|
|
7
|
+
"restful",
|
|
8
|
+
"rest",
|
|
9
|
+
"api",
|
|
10
|
+
"hono",
|
|
11
|
+
"auth",
|
|
12
|
+
"security",
|
|
13
|
+
"backend",
|
|
14
|
+
"infrastructure",
|
|
15
|
+
"venizia",
|
|
16
|
+
"vez",
|
|
17
|
+
"infra",
|
|
18
|
+
"bun",
|
|
19
|
+
"nodejs",
|
|
20
|
+
"decorator",
|
|
21
|
+
"class-based",
|
|
22
|
+
"framework",
|
|
23
|
+
"dependency injection",
|
|
24
|
+
"backend framework",
|
|
25
|
+
"nodejs framework",
|
|
26
|
+
"web framework"
|
|
27
|
+
],
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"default": "./dist/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./package.json": "./package.json"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"README.md",
|
|
37
|
+
"LICENSE",
|
|
38
|
+
"dist",
|
|
39
|
+
"!/**/tests",
|
|
40
|
+
"!/**/dist/tests",
|
|
41
|
+
"!/**/__tests__"
|
|
42
|
+
],
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"engines": {
|
|
47
|
+
"bun": ">=1.3"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "sh ./scripts/build.sh",
|
|
51
|
+
"clean": "sh ./scripts/clean.sh",
|
|
52
|
+
"eslint": "eslint --report-unused-disable-directives .",
|
|
53
|
+
"lint": "bun run eslint && bun run prettier:cli",
|
|
54
|
+
"lint:fix": "bun run eslint --fix && bun run prettier:fix",
|
|
55
|
+
"prettier:cli": "prettier \"**/*.{js,ts}\" -l",
|
|
56
|
+
"prettier:fix": "bun run prettier:cli --write",
|
|
57
|
+
"rebuild": "sh ./scripts/rebuild.sh no-version",
|
|
58
|
+
"rebuild:major": "sh ./scripts/rebuild.sh major",
|
|
59
|
+
"rebuild:minor": "sh ./scripts/rebuild.sh minor",
|
|
60
|
+
"rebuild:patch": "sh ./scripts/rebuild.sh patch",
|
|
61
|
+
"rebuild:premajor": "sh ./scripts/rebuild.sh premajor",
|
|
62
|
+
"rebuild:preminor": "sh ./scripts/rebuild.sh preminor",
|
|
63
|
+
"rebuild:prepatch": "sh ./scripts/rebuild.sh prepatch",
|
|
64
|
+
"rebuild:prerelease": "sh ./scripts/rebuild.sh prerelease",
|
|
65
|
+
"test:develop": "bun run rebuild && NODE_ENV=development bun run ./dist/__tests__/index.js"
|
|
66
|
+
},
|
|
67
|
+
"repository": {
|
|
68
|
+
"type": "git",
|
|
69
|
+
"url": "git+https://github.com/VENIZIA-AI/ignis.git"
|
|
70
|
+
},
|
|
71
|
+
"author": {
|
|
72
|
+
"name": "VENIZIA AI Developer",
|
|
73
|
+
"email": "developer@venizia.ai",
|
|
74
|
+
"url": "https://venizia.ai"
|
|
75
|
+
},
|
|
76
|
+
"bugs": {
|
|
77
|
+
"url": "https://github.com/VENIZIA-AI/ignis/issues"
|
|
78
|
+
},
|
|
79
|
+
"homepage": "https://github.com/VENIZIA-AI/ignis/wiki",
|
|
80
|
+
"license": "MIT",
|
|
81
|
+
"dependencies": {
|
|
82
|
+
"@venizia/ignis-helpers": "latest",
|
|
83
|
+
"lodash": "^4.17.21",
|
|
84
|
+
"reflect-metadata": "^0.2.2"
|
|
85
|
+
},
|
|
86
|
+
"peerDependencies": {
|
|
87
|
+
"@hono/node-server": "^1.19.6",
|
|
88
|
+
"@hono/swagger-ui": "^0.5.2",
|
|
89
|
+
"@hono/zod-openapi": "^1.1.5",
|
|
90
|
+
"@scalar/hono-api-reference": "^0.9.26",
|
|
91
|
+
"@socket.io/redis-adapter": "^8.3.0",
|
|
92
|
+
"@socket.io/redis-emitter": "^5.1.0",
|
|
93
|
+
"casbin": "^5.38.0",
|
|
94
|
+
"drizzle-orm": "^0.44.7",
|
|
95
|
+
"drizzle-zod": "^0.8.3",
|
|
96
|
+
"hono": "^4.10.7",
|
|
97
|
+
"jose": "^6.1.3",
|
|
98
|
+
"pg": "^8.16.3",
|
|
99
|
+
"socket.io": "^4.8.1",
|
|
100
|
+
"socket.io-client": "^4.8.1"
|
|
101
|
+
},
|
|
102
|
+
"peerDependenciesMeta": {
|
|
103
|
+
"@hono/node-server": {
|
|
104
|
+
"optional": true
|
|
105
|
+
},
|
|
106
|
+
"@hono/swagger-ui": {
|
|
107
|
+
"optional": true
|
|
108
|
+
},
|
|
109
|
+
"@socket.io/redis-adapter": {
|
|
110
|
+
"optional": true
|
|
111
|
+
},
|
|
112
|
+
"@socket.io/redis-emitter": {
|
|
113
|
+
"optional": true
|
|
114
|
+
},
|
|
115
|
+
"socket.io": {
|
|
116
|
+
"optional": true
|
|
117
|
+
},
|
|
118
|
+
"socket.io-client": {
|
|
119
|
+
"optional": true
|
|
120
|
+
},
|
|
121
|
+
"@scalar/hono-api-reference": {
|
|
122
|
+
"optional": true
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"devDependencies": {
|
|
126
|
+
"@hono/node-server": "^1.19.6",
|
|
127
|
+
"@hono/swagger-ui": "^0.5.2",
|
|
128
|
+
"@types/bun": "^1.3.4",
|
|
129
|
+
"@types/lodash": "^4.17.20",
|
|
130
|
+
"@types/pg": "^8.15.6",
|
|
131
|
+
"@venizia/dev-configs": "latest",
|
|
132
|
+
"drizzle-kit": "^0.31.7",
|
|
133
|
+
"eslint": "^9.36.0",
|
|
134
|
+
"prettier": "^3.6.2",
|
|
135
|
+
"tsc-alias": "^1.8.16",
|
|
136
|
+
"tsconfig-paths": "^4.2.0",
|
|
137
|
+
"tsx": "^4.20.6",
|
|
138
|
+
"typescript": "^5.9.3"
|
|
139
|
+
},
|
|
140
|
+
"sideEffects": false
|
|
141
|
+
}
|