@arkyn/server 2.0.1-beta.15 → 2.0.1-beta.17

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 +4 -4
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@ The `@arkyn/server` package provides utilities and services to streamline backen
2
2
 
3
3
  ---
4
4
 
5
- ## 📦 Installation
5
+ ## Installation
6
6
 
7
7
  Install the package using npm:
8
8
 
@@ -12,7 +12,7 @@ npm install @arkyn/server
12
12
 
13
13
  ---
14
14
 
15
- ## Features
15
+ ## Features
16
16
 
17
17
  ### Settings
18
18
 
@@ -105,12 +105,12 @@ npm install @arkyn/server
105
105
 
106
106
  ---
107
107
 
108
- ## 🤝 Contribution
108
+ ## Contribution
109
109
 
110
110
  Contributions are welcome! Feel free to open issues or submit pull requests to improve the project.
111
111
 
112
112
  ---
113
113
 
114
- ## 📄 License
114
+ ## License
115
115
 
116
116
  This project is licensed under the MIT License. See the `LICENSE` file for more details.
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "@arkyn/server",
3
- "version": "2.0.1-beta.15",
3
+ "version": "2.0.1-beta.17",
4
4
  "main": "./dist/bundle.js",
5
5
  "module": "./src/index.ts",
6
6
  "type": "module",
7
7
  "types": "./dist/index.d.ts",
8
+ "license": "MIT",
9
+ "author": "Arkyn | Lucas Gonçalves",
10
+ "description": "Server-side utilities for projects.",
8
11
  "scripts": {
9
12
  "clean": "rm -rf dist",
10
13
  "build": "bun run clean && bunx tsc --project tsconfig.json",