@akashjs/vite-plugin 0.1.1 → 0.1.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 +21 -0
  2. package/package.json +4 -3
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # @akashjs/vite-plugin
2
+
3
+ AkashJS Vite plugin — .akash file transformation and HMR
4
+
5
+ Part of the [AkashJS](https://github.com/phpirate/akashjs) framework.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @akashjs/vite-plugin
11
+ ```
12
+
13
+ ## Documentation
14
+
15
+ - [Guide](https://akash.js.org/guide/introduction)
16
+ - [API Reference](https://akash.js.org/api/vite-plugin)
17
+ - [GitHub](https://github.com/phpirate/akashjs)
18
+
19
+ ## License
20
+
21
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akashjs/vite-plugin",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "AkashJS Vite plugin — .akash file transformation and HMR",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -23,10 +23,11 @@
23
23
  "vite": "^5.0.0"
24
24
  },
25
25
  "dependencies": {
26
- "@akashjs/compiler": "^0.1.1"
26
+ "@akashjs/compiler": "^0.1.2"
27
27
  },
28
28
  "files": [
29
- "dist"
29
+ "dist",
30
+ "README.md"
30
31
  ],
31
32
  "license": "MIT",
32
33
  "publishConfig": {