@sleekify/sleekify-fastify 1.2.0 → 1.2.2

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 (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +11 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # <img src="resources/sleekify.png" height="27"> Sleekify Fastify Integration
1
+ # <img src="https://github.com/sleekify/assets/blob/main/resources/sleekify.png" height="27"> Sleekify Fastify Integration
2
2
 
3
3
  This project's goal is to simplify the development of REST web services in NodeJS by bringing the best of the Java API for RESTful Web Services (JAX-RS) to TypeScript.
4
4
  This is possible since TypeScript decorators may be used in a manner similar to Java annotations.
@@ -7,6 +7,12 @@ This allows you to maintain your API documentation alongside your code using typ
7
7
  If you ever had to maintain a large OpenAPI specification by hand, this should grab your attention.
8
8
  Your API documentation will both match the OpenAPI specification's schema and be generated from your code.
9
9
 
10
+ ## Versions
11
+
12
+ | Sleekify | Fastify | Node.js | OpenAPI Specification |
13
+ | -------- | ------- | ------- | --------------------- |
14
+ | 1.0.0+ | 5.0.0+ | 20 | 3.1.1 |
15
+
10
16
  ## Getting Started
11
17
 
12
18
  1. First, install Sleekify and the Fastify integration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sleekify/sleekify-fastify",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "A TypeScript decorator driven approach for developing Fastify web applications.",
5
5
  "scripts": {
6
6
  "build": "tsc",
@@ -23,6 +23,15 @@
23
23
  "url": "https://github.com/sleekify/sleekify-fastify/issues"
24
24
  },
25
25
  "homepage": "https://github.com/sleekify/sleekify-fastify#readme",
26
+ "keywords": [
27
+ "api",
28
+ "decorator",
29
+ "jax-rs",
30
+ "open",
31
+ "rest",
32
+ "spring",
33
+ "web"
34
+ ],
26
35
  "devDependencies": {
27
36
  "@tsconfig/node18": "^18.2.0",
28
37
  "@types/jest": "^29.5.3",
@@ -42,7 +51,7 @@
42
51
  "typescript": "^5.1.6"
43
52
  },
44
53
  "dependencies": {
45
- "@sleekify/sleekify": "^1.2.0",
54
+ "@sleekify/sleekify": "^1.2.2",
46
55
  "@types/node": "^20.4.5",
47
56
  "fastify": "^5.0.0",
48
57
  "fastify-openapi-glue": "^4.7.1",