balda 0.0.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/.localstack/cache/machine.json +1 -0
- package/.localstack/cache/server.test.pem +168 -0
- package/.localstack/cache/server.test.pem.crt +140 -0
- package/.localstack/cache/server.test.pem.key +28 -0
- package/LICENSE +21 -0
- package/README.md +46 -0
- package/lib/cli.js +306 -0
- package/lib/cli.js.map +1 -0
- package/lib/index.cjs +439 -0
- package/lib/index.cjs.map +1 -0
- package/lib/index.d.cts +3077 -0
- package/lib/index.d.ts +3077 -0
- package/lib/index.js +439 -0
- package/lib/index.js.map +1 -0
- package/package.json +179 -0
package/package.json
ADDED
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "balda",
|
|
3
|
+
"version": "0.0.01",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./lib/index.cjs",
|
|
6
|
+
"module": "./lib/index.js",
|
|
7
|
+
"types": "./lib/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./lib/index.d.ts",
|
|
11
|
+
"import": "./lib/index.js",
|
|
12
|
+
"require": "./lib/index.cjs"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"repository": "git@github.com:Frasan00/balda.git",
|
|
16
|
+
"author": "Frasan00 <francesco.sangiovanni.7@gmail.com>",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"scripts": {
|
|
19
|
+
"test:cron": "tsx test/cron/index.ts",
|
|
20
|
+
"test:cron:bun": "bun run --watch test/cron/index.ts",
|
|
21
|
+
"test:cron:deno": "deno task test:cron",
|
|
22
|
+
"benchmark": "tsx test/benchmark/index.ts",
|
|
23
|
+
"benchmark:bun": "bun run --watch test/benchmark/index.ts",
|
|
24
|
+
"benchmark:deno": "deno task benchmark",
|
|
25
|
+
"dev": "tsx watch test/server/index.ts",
|
|
26
|
+
"dev:bun": "bun run --watch test/server/index.ts",
|
|
27
|
+
"dev:deno": "deno task dev",
|
|
28
|
+
"build": "rm -rf lib && tsup",
|
|
29
|
+
"build:test": "rm -rf lib && tsup && rm -rf lib",
|
|
30
|
+
"build:prod": "rm -rf lib && tsup --minify",
|
|
31
|
+
"format": "prettier --write \"**/*.ts\"",
|
|
32
|
+
"test": "vitest --run",
|
|
33
|
+
"test:bun": "bun test",
|
|
34
|
+
"test:deno": "deno task test",
|
|
35
|
+
"test:all": "yarn test && yarn test:bun && yarn test:deno",
|
|
36
|
+
"test:watch": "vitest --watch",
|
|
37
|
+
"test:coverage": "vitest --coverage",
|
|
38
|
+
"prepare": "husky"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@adminjs/express": "^6.1.1",
|
|
42
|
+
"@aws-sdk/client-s3": "^3.952.0",
|
|
43
|
+
"@aws-sdk/client-sqs": "^3.911.0",
|
|
44
|
+
"@aws-sdk/cloudfront-signer": "^3.946.0",
|
|
45
|
+
"@aws-sdk/s3-presigned-post": "^3.952.0",
|
|
46
|
+
"@aws-sdk/s3-request-presigner": "^3.952.0",
|
|
47
|
+
"@azure/storage-blob": "^12.29.1",
|
|
48
|
+
"@types/bun": "^1.2.17",
|
|
49
|
+
"@types/deno": "^2.3.0",
|
|
50
|
+
"@types/express": "^5.0.6",
|
|
51
|
+
"@types/node": "^24.0.10",
|
|
52
|
+
"@types/pg": "^8.15.5",
|
|
53
|
+
"@types/ws": "^8.18.1",
|
|
54
|
+
"adminjs": "^7.8.17",
|
|
55
|
+
"autocannon": "^8.0.0",
|
|
56
|
+
"bullmq": "^5.61.0",
|
|
57
|
+
"bun-types": "^1.2.17",
|
|
58
|
+
"esbuild": "^0.27.1",
|
|
59
|
+
"esbuild-plugin-copy": "^2.1.1",
|
|
60
|
+
"eslint": "^9.29.0",
|
|
61
|
+
"express": "^5.2.1",
|
|
62
|
+
"express-formidable": "^1.2.0",
|
|
63
|
+
"express-session": "^1.18.2",
|
|
64
|
+
"graphql": "^16.12.0",
|
|
65
|
+
"graphql-yoga": "^5.17.1",
|
|
66
|
+
"husky": "^9.1.7",
|
|
67
|
+
"ioredis": "^5.8.1",
|
|
68
|
+
"lint-staged": "^16.1.2",
|
|
69
|
+
"mqtt": "^5.14.1",
|
|
70
|
+
"node-cron": "^4.2.1",
|
|
71
|
+
"node-gyp": "^11.2.0",
|
|
72
|
+
"pg": "^8.16.3",
|
|
73
|
+
"pg-boss": "^11.1.1",
|
|
74
|
+
"prettier": "^3.6.2",
|
|
75
|
+
"socket.io": "^4.8.1",
|
|
76
|
+
"sqs-consumer": "^14.0.1",
|
|
77
|
+
"supertest": "^7.1.1",
|
|
78
|
+
"ts-node": "^10.9.2",
|
|
79
|
+
"tsup": "^8.5.0",
|
|
80
|
+
"tsx": "^4.21.0",
|
|
81
|
+
"typescript": "^5.9.3",
|
|
82
|
+
"vitest": "^3.2.4",
|
|
83
|
+
"ws": "^8.18.2",
|
|
84
|
+
"zod": "^4.2.1"
|
|
85
|
+
},
|
|
86
|
+
"bin": {
|
|
87
|
+
"balda": "lib/cli.js"
|
|
88
|
+
},
|
|
89
|
+
"dependencies": {
|
|
90
|
+
"ajv": "^8.17.1",
|
|
91
|
+
"glob": "^13.0.0",
|
|
92
|
+
"pino": "^10.0.0"
|
|
93
|
+
},
|
|
94
|
+
"peerDependencies": {
|
|
95
|
+
"@aws-sdk/client-s3": "^3.952.0",
|
|
96
|
+
"@aws-sdk/client-sqs": "^3.911.0",
|
|
97
|
+
"@aws-sdk/cloudfront-signer": "^3.946.0",
|
|
98
|
+
"@aws-sdk/s3-presigned-post": "^3.952.0",
|
|
99
|
+
"@aws-sdk/s3-request-presigner": "^3.952.0",
|
|
100
|
+
"@azure/storage-blob": "^12.29.1",
|
|
101
|
+
"bullmq": "^5.61.0",
|
|
102
|
+
"esbuild": "^0.27.1",
|
|
103
|
+
"esbuild-plugin-copy": "^2.1.1",
|
|
104
|
+
"graphql": "^16.0.0",
|
|
105
|
+
"graphql-yoga": "^5.0.0",
|
|
106
|
+
"ioredis": "^5.8.1",
|
|
107
|
+
"mqtt": "^5.14.1",
|
|
108
|
+
"node-cron": "^4.1.0",
|
|
109
|
+
"pg": "^8.16.3",
|
|
110
|
+
"pg-boss": "^11.1.1",
|
|
111
|
+
"sqs-consumer": "^14.0.1",
|
|
112
|
+
"zod": "^4.0.0"
|
|
113
|
+
},
|
|
114
|
+
"peerDependenciesMeta": {
|
|
115
|
+
"bullmq": {
|
|
116
|
+
"optional": true
|
|
117
|
+
},
|
|
118
|
+
"esbuild": {
|
|
119
|
+
"optional": true
|
|
120
|
+
},
|
|
121
|
+
"esbuild-plugin-copy": {
|
|
122
|
+
"optional": true
|
|
123
|
+
},
|
|
124
|
+
"graphql": {
|
|
125
|
+
"optional": true
|
|
126
|
+
},
|
|
127
|
+
"graphql-yoga": {
|
|
128
|
+
"optional": true
|
|
129
|
+
},
|
|
130
|
+
"ioredis": {
|
|
131
|
+
"optional": true
|
|
132
|
+
},
|
|
133
|
+
"node-cron": {
|
|
134
|
+
"optional": true
|
|
135
|
+
},
|
|
136
|
+
"pg": {
|
|
137
|
+
"optional": true
|
|
138
|
+
},
|
|
139
|
+
"pg-boss": {
|
|
140
|
+
"optional": true
|
|
141
|
+
},
|
|
142
|
+
"sqs-consumer": {
|
|
143
|
+
"optional": true
|
|
144
|
+
},
|
|
145
|
+
"@aws-sdk/client-s3": {
|
|
146
|
+
"optional": true
|
|
147
|
+
},
|
|
148
|
+
"@aws-sdk/client-sqs": {
|
|
149
|
+
"optional": true
|
|
150
|
+
},
|
|
151
|
+
"@aws-sdk/cloudfront-signer": {
|
|
152
|
+
"optional": true
|
|
153
|
+
},
|
|
154
|
+
"@aws-sdk/s3-presigned-post": {
|
|
155
|
+
"optional": true
|
|
156
|
+
},
|
|
157
|
+
"@aws-sdk/s3-request-presigner": {
|
|
158
|
+
"optional": true
|
|
159
|
+
},
|
|
160
|
+
"@azure/storage-blob": {
|
|
161
|
+
"optional": true
|
|
162
|
+
},
|
|
163
|
+
"mqtt": {
|
|
164
|
+
"optional": true
|
|
165
|
+
},
|
|
166
|
+
"zod": {
|
|
167
|
+
"optional": true
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"tags": [
|
|
171
|
+
"framework",
|
|
172
|
+
"http",
|
|
173
|
+
"server",
|
|
174
|
+
"node",
|
|
175
|
+
"bun",
|
|
176
|
+
"deno",
|
|
177
|
+
"backend"
|
|
178
|
+
]
|
|
179
|
+
}
|