agentlaunch-templates 0.1.0 → 0.1.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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * generator.ts — Variable substitution engine for @agent-launch/templates
2
+ * generator.ts — Variable substitution engine for agentlaunch-templates
3
3
  *
4
4
  * Takes a template name + variable map and returns the generated files
5
5
  * ready to be written to disk or returned over the MCP protocol.
package/dist/generator.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * generator.ts — Variable substitution engine for @agent-launch/templates
2
+ * generator.ts — Variable substitution engine for agentlaunch-templates
3
3
  *
4
4
  * Takes a template name + variable map and returns the generated files
5
5
  * ready to be written to disk or returned over the MCP protocol.
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @agent-launch/templates
2
+ * agentlaunch-templates
3
3
  *
4
4
  * Agent code templates for the AgentLaunch platform.
5
5
  *
@@ -16,7 +16,7 @@
16
16
  * - Trading fee: 2% -> 100% to protocol treasury (NO creator fee)
17
17
  *
18
18
  * @example
19
- * import { listTemplates, getTemplate, generateFromTemplate } from "@agent-launch/templates";
19
+ * import { listTemplates, getTemplate, generateFromTemplate } from "agentlaunch-templates";
20
20
  *
21
21
  * // List all available templates
22
22
  * const templates = listTemplates();
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @agent-launch/templates
2
+ * agentlaunch-templates
3
3
  *
4
4
  * Agent code templates for the AgentLaunch platform.
5
5
  *
@@ -16,7 +16,7 @@
16
16
  * - Trading fee: 2% -> 100% to protocol treasury (NO creator fee)
17
17
  *
18
18
  * @example
19
- * import { listTemplates, getTemplate, generateFromTemplate } from "@agent-launch/templates";
19
+ * import { listTemplates, getTemplate, generateFromTemplate } from "agentlaunch-templates";
20
20
  *
21
21
  * // List all available templates
22
22
  * const templates = listTemplates();
@@ -1,5 +1,5 @@
1
1
  /**
2
- * registry.ts — Template registry for @agent-launch/templates
2
+ * registry.ts — Template registry for agentlaunch-templates
3
3
  *
4
4
  * All templates are imported here and exposed via listTemplates() / getTemplate().
5
5
  * Add new templates by:
package/dist/registry.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * registry.ts — Template registry for @agent-launch/templates
2
+ * registry.ts — Template registry for agentlaunch-templates
3
3
  *
4
4
  * All templates are imported here and exposed via listTemplates() / getTemplate().
5
5
  * Add new templates by:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentlaunch-templates",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Agent code templates for the AgentLaunch platform",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,7 +11,9 @@
11
11
  "types": "./dist/index.d.ts"
12
12
  }
13
13
  },
14
- "files": ["dist"],
14
+ "files": [
15
+ "dist"
16
+ ],
15
17
  "scripts": {
16
18
  "build": "tsc",
17
19
  "clean": "rm -rf dist"
@@ -20,5 +22,7 @@
20
22
  "devDependencies": {
21
23
  "typescript": "^5.3.0"
22
24
  },
23
- "engines": { "node": ">=18.0.0" }
25
+ "engines": {
26
+ "node": ">=18.0.0"
27
+ }
24
28
  }