@plasius/api 1.0.4 → 1.0.5
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/CHANGELOG.md +16 -1
- package/package.json +11 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
- **Added**
|
|
10
|
+
- (placeholder)
|
|
11
|
+
|
|
12
|
+
- **Changed**
|
|
13
|
+
- (placeholder)
|
|
14
|
+
|
|
15
|
+
- **Fixed**
|
|
16
|
+
- (placeholder)
|
|
17
|
+
|
|
18
|
+
- **Security**
|
|
19
|
+
- (placeholder)
|
|
20
|
+
|
|
21
|
+
## [1.0.5] - 2026-03-01
|
|
22
|
+
|
|
9
23
|
- **Added**
|
|
10
24
|
- (placeholder)
|
|
11
25
|
|
|
@@ -103,9 +117,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
103
117
|
|
|
104
118
|
- Initial public release scaffold for `@plasius/api`.
|
|
105
119
|
|
|
106
|
-
[Unreleased]: https://github.com/Plasius-LTD/api/compare/v1.0.
|
|
120
|
+
[Unreleased]: https://github.com/Plasius-LTD/api/compare/v1.0.5...HEAD
|
|
107
121
|
[1.0.0]: https://github.com/Plasius-LTD/api/releases/tag/v1.0.0
|
|
108
122
|
[1.0.1]: https://github.com/Plasius-LTD/api/releases/tag/v1.0.1
|
|
109
123
|
[1.0.2]: https://github.com/Plasius-LTD/api/releases/tag/v1.0.2
|
|
110
124
|
[1.0.3]: https://github.com/Plasius-LTD/api/releases/tag/v1.0.3
|
|
111
125
|
[1.0.4]: https://github.com/Plasius-LTD/api/releases/tag/v1.0.4
|
|
126
|
+
[1.0.5]: https://github.com/Plasius-LTD/api/releases/tag/v1.0.5
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Generic public API security and middleware helpers.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,8 +32,13 @@
|
|
|
32
32
|
"dev": "func start --javascript --host 0.0.0.0 --port 7071 --cors '*' --cors-credentials",
|
|
33
33
|
"test": "vitest run",
|
|
34
34
|
"test:watch": "vitest",
|
|
35
|
+
"typecheck": "tsc --noEmit",
|
|
35
36
|
"test:coverage": "vitest run --coverage",
|
|
36
|
-
"
|
|
37
|
+
"audit:eslint": "eslint . --max-warnings=0",
|
|
38
|
+
"audit:deps": "npm ls --all --omit=optional --omit=peer > /dev/null 2>&1 || true",
|
|
39
|
+
"audit:npm": "npm audit --audit-level=high --omit=dev",
|
|
40
|
+
"audit:test": "vitest run --coverage",
|
|
41
|
+
"lint": "eslint . --max-warnings=0",
|
|
37
42
|
"pack:check": "node scripts/verify-public-package.cjs",
|
|
38
43
|
"prepublishOnly": "npm run build && npm run pack:check",
|
|
39
44
|
"prepare": "npm run build"
|
|
@@ -56,9 +61,11 @@
|
|
|
56
61
|
},
|
|
57
62
|
"homepage": "https://github.com/Plasius-LTD/api#readme",
|
|
58
63
|
"dependencies": {
|
|
59
|
-
"@azure/functions": "^4.0.0"
|
|
64
|
+
"@azure/functions": "^4.0.0",
|
|
65
|
+
"ioredis": "^5.8.2"
|
|
60
66
|
},
|
|
61
67
|
"devDependencies": {
|
|
68
|
+
"@eslint/js": "^10.0.1",
|
|
62
69
|
"@types/jsonwebtoken": "^9.0.10",
|
|
63
70
|
"@types/node": "^24.3.1",
|
|
64
71
|
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
@@ -66,6 +73,7 @@
|
|
|
66
73
|
"@vitest/coverage-v8": "^4.0.18",
|
|
67
74
|
"azure-functions-core-tools": "^2.0.0",
|
|
68
75
|
"eslint": "^10.0.1",
|
|
76
|
+
"globals": "^17.3.0",
|
|
69
77
|
"rimraf": "^6.0.1",
|
|
70
78
|
"tsx": "^4.20.5",
|
|
71
79
|
"typescript": "^5.9.2",
|