rafters 0.0.69 → 0.0.71

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.
@@ -25,6 +25,7 @@ declare const RegistryItemTypeSchema: z.ZodEnum<{
25
25
  ui: "ui";
26
26
  primitive: "primitive";
27
27
  composite: "composite";
28
+ rule: "rule";
28
29
  }>;
29
30
  type RegistryItemType = z.infer<typeof RegistryItemTypeSchema>;
30
31
  /**
@@ -57,6 +58,7 @@ declare const RegistryItemSchema: z.ZodObject<{
57
58
  ui: "ui";
58
59
  primitive: "primitive";
59
60
  composite: "composite";
61
+ rule: "rule";
60
62
  }>;
61
63
  description: z.ZodOptional<z.ZodString>;
62
64
  primitives: z.ZodArray<z.ZodString>;
@@ -8,7 +8,7 @@ var RegistryFileSchema = z.object({
8
8
  devDependencies: z.array(z.string()).default([])
9
9
  // e.g., ["vitest"] - from @devDependencies JSDoc
10
10
  });
11
- var RegistryItemTypeSchema = z.enum(["ui", "primitive", "composite"]);
11
+ var RegistryItemTypeSchema = z.enum(["ui", "primitive", "composite", "rule"]);
12
12
  var RegistryItemIntelligenceSchema = z.object({
13
13
  cognitiveLoad: z.number().optional(),
14
14
  attentionEconomics: z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rafters",
3
- "version": "0.0.69",
3
+ "version": "0.0.71",
4
4
  "description": "Design Intelligence CLI. Scaffold tokens, import existing shadcn/Tailwind v4 sources, add components, and serve an MCP server so AI agents read decisions instead of guessing.",
5
5
  "homepage": "https://rafters.studio",
6
6
  "license": "MIT",
@@ -34,6 +34,7 @@
34
34
  "@antfu/ni": "^28.1.0",
35
35
  "@inquirer/prompts": "^8.2.0",
36
36
  "@modelcontextprotocol/sdk": "^1.25.1",
37
+ "@tailwindcss/cli": "^4.1.18",
37
38
  "commander": "^13.0.0",
38
39
  "css-tree": "^3.2.1",
39
40
  "execa": "^9.6.1",