@syntay/fastay 0.2.7 → 0.2.8

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 +15 -0
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -1,7 +1,22 @@
1
1
  # Fastay Documentation
2
+
2
3
  <p align="center">
3
4
  <img src="./fastay.png" width="200" />
5
+ <br>
6
+ <a href="https://www.npmjs.com/package/@syntay/fastay">
7
+ <img src="https://img.shields.io/npm/v/@syntay/fastay.svg?style=flat-square" alt="npm version">
8
+ </a>
9
+ <a href="https://github.com/syntay-team/fastay">
10
+ <img src="https://img.shields.io/badge/GitHub-Repository-blue?style=flat-square&logo=github" alt="GitHub">
11
+ </a>
12
+ <a href="https://www.npmjs.com/package/@syntay/fastay">
13
+ <img src="https://img.shields.io/npm/dt/@syntay/fastay.svg?style=flat-square" alt="npm downloads">
14
+ </a>
15
+ <a href="https://github.com/syntay-team/fastay/blob/main/LICENSE">
16
+ <img src="https://img.shields.io/npm/l/@syntay/fastay.svg?style=flat-square" alt="license">
17
+ </a>
4
18
  </p>
19
+
5
20
  Fastay is a modern backend framework built on Express.js, designed to create APIs quickly, predictably, and in a developer-friendly way.
6
21
 
7
22
  It is **TypeScript-first**, file-based, auto-discovers routes and middlewares, and provides a clean development experience.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syntay/fastay",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "Framework backend moderno baseado em Express.js, para criar APIs rapidamente",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,7 +27,9 @@
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "files": ["dist"],
30
+ "files": [
31
+ "dist"
32
+ ],
31
33
  "dependencies": {
32
34
  "busboy": "^1.6.0",
33
35
  "chokidar": "^4.0.3",