@intentius/chant-lexicon-k8s 0.0.12 → 0.0.13

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.
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # @intentius/chant-lexicon-k8s
2
+
3
+ Kubernetes lexicon for [chant](https://intentius.io/chant/) — declare infrastructure as typed TypeScript that serializes to Kubernetes YAML manifests.
4
+
5
+ This package provides typed constructors for all core Kubernetes resource types (Deployments, Services, ConfigMaps, Secrets, StatefulSets, and more), property types (Containers, Volumes, Probes, etc.), composites for common patterns, and K8s-specific lint rules. It also includes LSP and MCP server support for editor completions and hover.
6
+
7
+ ```bash
8
+ npm install --save-dev @intentius/chant @intentius/chant-lexicon-k8s
9
+ ```
10
+
11
+ **[Documentation →](https://intentius.io/chant/lexicons/k8s/)**
12
+
13
+ ## Related Packages
14
+
15
+ | Package | Role |
16
+ |---------|------|
17
+ | [@intentius/chant](https://www.npmjs.com/package/@intentius/chant) | Core type system, CLI, build pipeline |
18
+ | [@intentius/chant-lexicon-aws](https://www.npmjs.com/package/@intentius/chant-lexicon-aws) | AWS CloudFormation lexicon |
19
+ | [@intentius/chant-lexicon-gitlab](https://www.npmjs.com/package/@intentius/chant-lexicon-gitlab) | GitLab CI lexicon |
20
+ | [@intentius/chant-lexicon-flyway](https://www.npmjs.com/package/@intentius/chant-lexicon-flyway) | Flyway migration lexicon |
21
+
22
+ ## License
23
+
24
+ See the main project LICENSE file.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "algorithm": "xxhash64",
3
3
  "artifacts": {
4
- "manifest.json": "a9f93ff8c0a8f750",
4
+ "manifest.json": "4ed66408d8e29abe",
5
5
  "meta.json": "1ce194f36f9b5f90",
6
6
  "types/index.d.ts": "beec4cc869064186",
7
7
  "rules/hardcoded-namespace.ts": "54b216c71018e101",
@@ -28,5 +28,5 @@
28
28
  "rules/wk8209.ts": "820df53f304e0a59",
29
29
  "skills/chant-k8s.md": "f1c4ed163f8fa84c"
30
30
  },
31
- "composite": "cfc40ee5b5214cda"
31
+ "composite": "c630f44a73860007"
32
32
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "k8s",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "K8s",
6
6
  "intrinsics": [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-k8s",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "files": ["src/", "dist/"],
@@ -22,7 +22,7 @@
22
22
  "prepack": "bun run generate && bun run bundle && bun run validate"
23
23
  },
24
24
  "dependencies": {
25
- "@intentius/chant": "0.0.11"
25
+ "@intentius/chant": "0.0.12"
26
26
  },
27
27
  "devDependencies": {
28
28
  "typescript": "^5.9.3"