barejs 0.1.0-alpha.1 → 0.1.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/README.md +2 -2
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -21,14 +21,14 @@ BareJS is designed for maximum throughput. In our latest head-to-head test again
21
21
 
22
22
  ### 1. Installation
23
23
  ```bash
24
- bun add barejs-core
24
+ bun add barejs
25
25
 
26
26
  ```
27
27
 
28
28
  ### 2. Basic Usage
29
29
 
30
30
  ```typescript
31
- import { BareJS } from "barejs-core";
31
+ import { BareJS } from "barejs";
32
32
 
33
33
  const app = new BareJS();
34
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "name": "barejs",
3
- "version": "0.1.0-alpha.1",
2
+ "name": "barejs",
3
+ "version": "0.1.1",
4
4
  "description": "High-performance JIT-specialized web framework for Bun",
5
5
  "main": "src/bare.ts",
6
6
  "types": "src/bare.ts",
@@ -8,10 +8,15 @@
8
8
  "scripts": {
9
9
  "test": "echo \"Error: no test specified\" && exit 1"
10
10
  },
11
- "keywords": ["bun", "framework", "fastest", "jit"],
11
+ "keywords": [
12
+ "bun",
13
+ "framework",
14
+ "fastest",
15
+ "jit"
16
+ ],
12
17
  "author": "xarhang",
13
18
  "license": "MIT",
14
19
  "devDependencies": {
15
20
  "@types/bun": "latest"
16
21
  }
17
- }
22
+ }