@kernlang/cli 3.1.0 → 3.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 +23 -0
  2. package/package.json +12 -12
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # @kernlang/cli
2
+
3
+ KERN CLI — transpile, compile, minify, and analyze .kern files
4
+
5
+ Part of the [KERN monorepo](https://github.com/KERNlang/kern).
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install -g @kernlang/cli
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ kern compile src/ --target react-tailwind
17
+ kern review src/ --recursive --llm
18
+ kern evolve src/ --propose
19
+ ```
20
+
21
+ ## License
22
+
23
+ AGPL-3.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kernlang/cli",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "KERN CLI — transpile, compile, minify, and analyze .kern files",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -19,17 +19,17 @@
19
19
  "dependencies": {
20
20
  "chokidar": "^5.0.0",
21
21
  "jiti": "^2.6.1",
22
- "@kernlang/core": "3.1.0",
23
- "@kernlang/evolve": "3.1.0",
24
- "@kernlang/express": "3.1.0",
25
- "@kernlang/metrics": "3.1.0",
26
- "@kernlang/fastapi": "3.1.0",
27
- "@kernlang/react": "3.1.0",
28
- "@kernlang/native": "3.1.0",
29
- "@kernlang/review": "3.1.0",
30
- "@kernlang/review-mcp": "3.1.0",
31
- "@kernlang/terminal": "3.1.0",
32
- "@kernlang/vue": "3.1.0"
22
+ "@kernlang/core": "3.1.1",
23
+ "@kernlang/evolve": "3.1.1",
24
+ "@kernlang/express": "3.1.1",
25
+ "@kernlang/fastapi": "3.1.1",
26
+ "@kernlang/metrics": "3.1.1",
27
+ "@kernlang/review": "3.1.1",
28
+ "@kernlang/review-mcp": "3.1.1",
29
+ "@kernlang/native": "3.1.1",
30
+ "@kernlang/terminal": "3.1.1",
31
+ "@kernlang/react": "3.1.1",
32
+ "@kernlang/vue": "3.1.1"
33
33
  },
34
34
  "scripts": {
35
35
  "build": "tsc -b",