create-revealui 0.2.0 → 0.3.0

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.
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { createCli } from '@revealui/cli'
3
+ import { createCli } from '@revealui/cli';
4
4
 
5
- const program = createCli()
6
- await program.parseAsync(process.argv)
5
+ const program = createCli();
6
+ await program.parseAsync(process.argv);
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "create-revealui",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Create a new RevealUI project",
5
+ "engines": {
6
+ "node": ">=24.13.0"
7
+ },
5
8
  "type": "module",
6
9
  "bin": {
7
10
  "create-revealui": "./bin/create-revealui.js"
@@ -10,7 +13,7 @@
10
13
  "bin"
11
14
  ],
12
15
  "dependencies": {
13
- "@revealui/cli": "0.2.0"
16
+ "@revealui/cli": "0.3.0"
14
17
  },
15
18
  "license": "MIT",
16
19
  "publishConfig": {
@@ -27,5 +30,10 @@
27
30
  "create-revealui",
28
31
  "scaffolding",
29
32
  "cli"
30
- ]
33
+ ],
34
+ "scripts": {
35
+ "lint": "biome check .",
36
+ "test": "echo 'No tests — thin wrapper for @revealui/cli'",
37
+ "typecheck": "echo 'No source — bin wrapper only'"
38
+ }
31
39
  }