@venizia/ignis-helpers 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.
Files changed (1) hide show
  1. package/package.json +126 -0
package/package.json ADDED
@@ -0,0 +1,126 @@
1
+ {
2
+ "name": "@venizia/ignis-helpers",
3
+ "version": "0.0.1-1",
4
+ "description": "JS/TS Helpers",
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
+ },
66
+ "repository": {
67
+ "type": "git",
68
+ "url": "git+https://github.com/VENIZIA-AI/ignis.git"
69
+ },
70
+ "author": {
71
+ "name": "VENIZIA AI Developer",
72
+ "email": "developer@venizia.ai",
73
+ "url": "https://venizia.ai"
74
+ },
75
+ "bugs": {
76
+ "url": "https://github.com/VENIZIA-AI/ignis/issues"
77
+ },
78
+ "homepage": "https://github.com/VENIZIA-AI/ignis/wiki",
79
+ "license": "MIT",
80
+ "dependencies": {
81
+ "@socket.io/redis-adapter": "^8.3.0",
82
+ "@socket.io/redis-emitter": "^5.1.0",
83
+ "@venizia/ignis-inversion": "latest",
84
+ "axios": "^1.12.2",
85
+ "bullmq": "^5.63.1",
86
+ "cron": "^4.3.3",
87
+ "dayjs": "^1.11.18",
88
+ "hono": "^4.10.7",
89
+ "ioredis": "^5.7.0",
90
+ "lodash": "^4.17.21",
91
+ "minio": "^8.0.6",
92
+ "mqtt": "^5.14.1",
93
+ "reflect-metadata": "^0.2.2",
94
+ "socket.io": "^4.8.1",
95
+ "socket.io-client": "^4.8.1",
96
+ "winston": "^3.17.0",
97
+ "winston-daily-rotate-file": "^5.0.0",
98
+ "winston-transport": "^4.9.0"
99
+ },
100
+ "peerDependenciesMeta": {
101
+ "@socket.io/redis-adapter": {
102
+ "optional": true
103
+ },
104
+ "@socket.io/redis-emitter": {
105
+ "optional": true
106
+ },
107
+ "socket.io": {
108
+ "optional": true
109
+ },
110
+ "socket.io-client": {
111
+ "optional": true
112
+ }
113
+ },
114
+ "devDependencies": {
115
+ "@hono/zod-openapi": "^1.1.5",
116
+ "@types/bun": "^1.3.4",
117
+ "@types/lodash": "^4.17.20",
118
+ "@venizia/dev-configs": "latest",
119
+ "eslint": "^9.36.0",
120
+ "prettier": "^3.6.2",
121
+ "tsc-alias": "^1.8.16",
122
+ "tsconfig-paths": "^4.2.0",
123
+ "typescript": "^5.9.3"
124
+ },
125
+ "sideEffects": false
126
+ }