@remyyy/velox 0.0.1 → 0.0.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 +33 -0
  2. package/package.json +3 -2
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # @remyyy/velox
2
+
3
+ **The Fastest Web Framework in the Universe**
4
+
5
+ Velox is a next-generation web framework designed for ultimate performance and surgical DOM updates.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @remyyy/velox
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ Velox uses **Signals** for state management.
16
+
17
+ ```tsx
18
+ import { createSignal } from '@remyyy/velox';
19
+
20
+ export default function Counter() {
21
+ const [count, setCount] = createSignal(0);
22
+
23
+ return (
24
+ <button onClick={() => setCount(c => c + 1)}>
25
+ Count: {count}
26
+ </button>
27
+ );
28
+ }
29
+ ```
30
+
31
+ ## Documentation
32
+
33
+ For full documentation, visit the [main repository](https://github.com/TheRemyyy/velox-framework).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remyyy/velox",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -27,7 +27,8 @@
27
27
  }
28
28
  },
29
29
  "files": [
30
- "dist"
30
+ "dist",
31
+ "README.md"
31
32
  ],
32
33
  "scripts": {
33
34
  "build": "vite build && tsc",