@seip/blue-bird 1.0.2 → 1.1.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/.env_example +1 -0
- package/AGENTS.md +1 -1
- package/core/cli/docker.js +19 -19
- package/core/cli/init.js +44 -2
- package/core/index.d.ts +137 -137
- package/core/ws.js +210 -210
- package/frontend/js/utils.js +557 -557
- package/package.json +64 -65
package/package.json
CHANGED
|
@@ -1,66 +1,65 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@seip/blue-bird",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "Express opinionated API framework with built-in JWT auth, validation, and caching",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"types": "core/index.d.ts",
|
|
7
|
-
"exports": {
|
|
8
|
-
"./*": "./*"
|
|
9
|
-
},
|
|
10
|
-
"bin": {
|
|
11
|
-
"blue-bird": "core/cli/init.js"
|
|
12
|
-
},
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "git+https://github.com/seip25/Blue-bird.git"
|
|
16
|
-
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"express",
|
|
19
|
-
"framework",
|
|
20
|
-
"html",
|
|
21
|
-
"api",
|
|
22
|
-
"jwt",
|
|
23
|
-
"seo"
|
|
24
|
-
],
|
|
25
|
-
"author": "Seip25",
|
|
26
|
-
"license": "MIT",
|
|
27
|
-
"bugs": {
|
|
28
|
-
"url": "https://github.com/seip25/Blue-bird/issues"
|
|
29
|
-
},
|
|
30
|
-
"homepage": "https://seip25.github.io/Blue-bird/",
|
|
31
|
-
"scripts": {
|
|
32
|
-
"dev": "node --watch --env-file=.env backend/index.js",
|
|
33
|
-
"start": "node --env-file=.env backend/index.js",
|
|
34
|
-
"init": "node core/cli/init.js",
|
|
35
|
-
"route": "node core/cli/route.js",
|
|
36
|
-
"swagger-install": "node core/cli/swagger.js",
|
|
37
|
-
"docker": "node core/cli/init.js docker"
|
|
38
|
-
},
|
|
39
|
-
"publishConfig": {
|
|
40
|
-
"access": "public"
|
|
41
|
-
},
|
|
42
|
-
"files": [
|
|
43
|
-
"core",
|
|
44
|
-
"backend",
|
|
45
|
-
"frontend",
|
|
46
|
-
"docker",
|
|
47
|
-
"docker-compose.yml",
|
|
48
|
-
"AGENTS.md",
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"express": "^
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@seip/blue-bird",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Express opinionated API framework with built-in JWT auth, validation, and caching",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"types": "core/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
"./*": "./*"
|
|
9
|
+
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"blue-bird": "core/cli/init.js"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/seip25/Blue-bird.git"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"express",
|
|
19
|
+
"framework",
|
|
20
|
+
"html",
|
|
21
|
+
"api",
|
|
22
|
+
"jwt",
|
|
23
|
+
"seo"
|
|
24
|
+
],
|
|
25
|
+
"author": "Seip25",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/seip25/Blue-bird/issues"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://seip25.github.io/Blue-bird/",
|
|
31
|
+
"scripts": {
|
|
32
|
+
"dev": "node --watch --env-file=.env backend/index.js",
|
|
33
|
+
"start": "node --env-file=.env backend/index.js",
|
|
34
|
+
"init": "node core/cli/init.js",
|
|
35
|
+
"route": "node core/cli/route.js",
|
|
36
|
+
"swagger-install": "node core/cli/swagger.js",
|
|
37
|
+
"docker": "node core/cli/init.js docker"
|
|
38
|
+
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public"
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"core",
|
|
44
|
+
"backend",
|
|
45
|
+
"frontend",
|
|
46
|
+
"docker",
|
|
47
|
+
"docker-compose.yml",
|
|
48
|
+
"AGENTS.md",
|
|
49
|
+
".env_example"
|
|
50
|
+
],
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"chalk": "^5.6.2",
|
|
53
|
+
"compression": "^1.8.1",
|
|
54
|
+
"cookie-parser": "^1.4.7",
|
|
55
|
+
"cors": "^2.8.6",
|
|
56
|
+
"express": "^5.2.1",
|
|
57
|
+
"express-rate-limit": "^8.2.1",
|
|
58
|
+
"helmet": "^8.1.0",
|
|
59
|
+
"jsonwebtoken": "^9.0.2",
|
|
60
|
+
"multer": "^2.0.2",
|
|
61
|
+
"redis": "^6.1.0",
|
|
62
|
+
"ws": "^8.18.0",
|
|
63
|
+
"xss": "^1.0.15"
|
|
64
|
+
}
|
|
66
65
|
}
|