even-toolkit 1.5.1 → 1.5.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.
package/README.md CHANGED
@@ -16,8 +16,12 @@ Scaffold a new app instantly:
16
16
 
17
17
  ```bash
18
18
  npx @even-toolkit/create-even-app my-app
19
+ # or
20
+ npx even-toolkit my-app
19
21
  ```
20
22
 
23
+ Choose from 6 templates: minimal, dashboard, notes, chat, tracker, media.
24
+
21
25
  ## What's Inside
22
26
 
23
27
  ### `/web` — Web Component Library
package/bin/create.js ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { execSync } from 'child_process';
4
+
5
+ // Delegate to @even-toolkit/create-even-app
6
+ const args = process.argv.slice(2).join(' ');
7
+ try {
8
+ execSync(`npx @even-toolkit/create-even-app ${args}`, { stdio: 'inherit' });
9
+ } catch {
10
+ process.exit(1);
11
+ }
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "even-toolkit",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
+ "bin": {
5
+ "even-toolkit": "./bin/create.js"
6
+ },
4
7
  "description": "Design system & component library for Even Realities G2 smart glasses apps — 55+ web components, 191 pixel-art icons, glasses SDK bridge, and design tokens.",
5
8
  "type": "module",
6
9
  "main": "./dist/glasses/index.js",
@@ -356,6 +359,7 @@
356
359
  }
357
360
  },
358
361
  "files": [
362
+ "bin",
359
363
  "dist",
360
364
  "web",
361
365
  "glasses",