@gtkx/cli 0.9.1 → 0.9.3

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/dist/create.d.ts +0 -10
  2. package/package.json +3 -3
package/dist/create.d.ts CHANGED
@@ -1,20 +1,10 @@
1
- /** Supported package managers for project scaffolding. */
2
1
  export type PackageManager = "pnpm" | "npm" | "yarn" | "bun";
3
- /** Supported testing frameworks for project scaffolding. */
4
2
  export type TestingFramework = "vitest" | "jest" | "node" | "none";
5
- /**
6
- * Options for creating a new GTKX application.
7
- */
8
3
  export type CreateOptions = {
9
- /** Project name (lowercase letters, numbers, and hyphens only). */
10
4
  name?: string;
11
- /** Application ID in reverse domain notation (e.g., com.example.myapp). */
12
5
  appId?: string;
13
- /** Package manager to use for installing dependencies. */
14
6
  packageManager?: PackageManager;
15
- /** Testing framework to set up. */
16
7
  testing?: TestingFramework;
17
- /** Whether to include Claude Code skills for AI assistance. */
18
8
  claudeSkills?: boolean;
19
9
  };
20
10
  export declare const getTestScript: (testing: TestingFramework) => string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/cli",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "description": "CLI for GTKX - create and develop GTK4 React applications",
5
5
  "keywords": [
6
6
  "gtk",
@@ -47,8 +47,8 @@
47
47
  "@vitejs/plugin-react": "^5.1.2",
48
48
  "citty": "^0.1.6",
49
49
  "vite": "^7.3.0",
50
- "@gtkx/ffi": "0.9.1",
51
- "@gtkx/react": "0.9.1"
50
+ "@gtkx/ffi": "0.9.3",
51
+ "@gtkx/react": "0.9.3"
52
52
  },
53
53
  "devDependencies": {
54
54
  "memfs": "^4.51.1"