@akashjs/compiler 0.1.0 → 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 +3 -2
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # @akashjs/compiler
2
+
3
+ AkashJS compiler — .akash SFC parsing, analysis, and code generation
4
+
5
+ Part of the [AkashJS](https://github.com/phpirate/akashjs) framework.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @akashjs/compiler
11
+ ```
12
+
13
+ ## Documentation
14
+
15
+ - [Guide](https://akash.js.org/guide/introduction)
16
+ - [API Reference](https://akash.js.org/api/compiler)
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/compiler",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "AkashJS compiler — .akash SFC parsing, analysis, and code generation",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -20,7 +20,8 @@
20
20
  "test": "vitest"
21
21
  },
22
22
  "files": [
23
- "dist"
23
+ "dist",
24
+ "README.md"
24
25
  ],
25
26
  "license": "MIT",
26
27
  "publishConfig": {