frontmcp 0.2.5 → 0.3.1

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/package.json CHANGED
@@ -1,26 +1,40 @@
1
1
  {
2
2
  "name": "frontmcp",
3
- "version": "0.2.5",
3
+ "version": "0.3.1",
4
4
  "description": "FrontMCP command line interface",
5
- "main": "dist/index.js",
6
- "bin": {
7
- "frontmcp": "dist/cli.js"
5
+ "author": "AgentFront <info@agentfront.dev>",
6
+ "homepage": "https://docs.agentfront.dev",
7
+ "license": "Apache-2.0",
8
+ "keywords": [
9
+ "cli",
10
+ "mcp",
11
+ "agentfront",
12
+ "frontmcp",
13
+ "framework",
14
+ "typescript"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/agentfront/frontmcp.git"
19
+ },
20
+ "bugs": {
21
+ "url": "https://github.com/agentfront/frontmcp/issues"
8
22
  },
9
- "scripts": {
10
- "build": "tsc",
11
- "dev": "tsx src/cli.ts",
12
- "prepare": "npm run build"
23
+ "main": "./src/index.js",
24
+ "bin": {
25
+ "frontmcp": "./src/cli.js"
13
26
  },
14
27
  "dependencies": {
15
- "@frontmcp/sdk": "^0.2.5",
16
- "@frontmcp/core": "^0.2.5",
17
- "@frontmcp/plugins": "^0.2.5",
18
- "@frontmcp/adapters": "^0.2.5",
19
- "tsx": "^4.16.0",
20
- "typescript": "^5.5.3"
28
+ "@frontmcp/sdk": "^0.3.1",
29
+ "@frontmcp/plugins": "^0.3.1",
30
+ "@frontmcp/adapters": "^0.3.1"
21
31
  },
22
32
  "devDependencies": {
23
- "@types/node": "^20.11.30",
33
+ "typescript": "^5.5.3",
34
+ "tsx": "^4.20.6",
35
+ "@types/node": "^22.0.0",
24
36
  "@modelcontextprotocol/inspector": "^0.17.2"
25
- }
37
+ },
38
+ "types": "./src/index.d.ts",
39
+ "type": "commonjs"
26
40
  }
package/src/cli.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * frontmcp - FrontMCP command line interface
4
+ * Save as bin/frontmcp.ts (compile to JS with shebang preserved) or run with tsx.
5
+ */
6
+ export {};