birdpack 1.0.0 → 1.0.1

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/index.js +1 -0
  2. package/package.json +4 -13
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('./lib/server');
package/package.json CHANGED
@@ -1,17 +1,8 @@
1
1
  {
2
2
  "name":"birdpack",
3
- "description": "BirdPack framework is a tool for web server via TCP HTTP supporting websocket focusing on speed.",
3
+ "description": "BirdPack web framework is a tool for web server via TCP HTTP supporting websocket focusing on speed.",
4
4
  "author":"R938",
5
- "license":"r938-birdpack-2025",
6
- "version":"1.0.0",
7
- "type": "module",
8
- "main": "lib/server.js",
9
- "exports": {
10
- ".": "./lib/server.js"
11
- },
12
- "directories": {
13
- },
14
- "scripts": {
15
- "dev": "node app.js -u http -p 8000"
16
- }
5
+ "license":"r938",
6
+ "version":"1.0.1",
7
+ "main": "index.js"
17
8
  }