@launchframe/cli 1.0.2 → 1.0.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.
@@ -6,7 +6,8 @@
6
6
  "Bash(node -c:*)",
7
7
  "Bash(node:*)",
8
8
  "Bash(git checkout:*)",
9
- "Bash(grep:*)"
9
+ "Bash(grep:*)",
10
+ "Bash(mv:*)"
10
11
  ]
11
12
  }
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@launchframe/cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Production-ready B2B SaaS boilerplate with subscriptions, credits, and multi-tenancy",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,5 +1,21 @@
1
1
  // Module configuration - defines files, sections, and dependencies for each module
2
2
  const MODULE_CONFIG = {
3
+ ai: {
4
+ backend: {
5
+ files: ['src/modules/domain/ai'],
6
+ sections: {
7
+ 'src/modules/app/app.module.ts': ['EXTRA_MODULE_IMPORT', 'EXTRA_MODULE'],
8
+ },
9
+ dependencies: {
10
+ '@anthropic-ai/sdk': '^0.39.0',
11
+ },
12
+ },
13
+ infrastructure: {
14
+ sections: {
15
+ '.env.example': ['EXTRA_ENV_VARS'],
16
+ },
17
+ },
18
+ },
3
19
  blog: {
4
20
  website: {
5
21
  files: [
@@ -6,6 +6,13 @@ const MODULE_REGISTRY = {
6
6
  description: 'Markdown-based blog using local .md files with YAML front-matter — no database required',
7
7
  services: ['website'],
8
8
  version: '1.0.0'
9
+ },
10
+ ai: {
11
+ name: 'ai',
12
+ displayName: 'AI',
13
+ description: 'LLM integration via Anthropic SDK — call generateResponse() from LLMService in any backend service',
14
+ services: ['backend'],
15
+ version: '1.0.0'
9
16
  }
10
17
  };
11
18