genifyai 0.1.2 → 0.1.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.
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { searchFuzzy, searchFuzzySchema } from './tools/searchFuzzy.js';
|
|
|
9
9
|
import { setWorkspaceRoot } from './utils/pathResolver.js';
|
|
10
10
|
const server = new Server({
|
|
11
11
|
name: 'genifyai',
|
|
12
|
-
version: '0.1.
|
|
12
|
+
version: '0.1.3',
|
|
13
13
|
}, {
|
|
14
14
|
capabilities: {
|
|
15
15
|
tools: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genifyai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Intelligent coding assistant MCP tool with AST-based code indexing",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"build": "tsc",
|
|
15
15
|
"dev": "tsc --watch",
|
|
16
16
|
"start": "node dist/index.js",
|
|
17
|
-
"prepublishOnly": "pnpm build"
|
|
17
|
+
"prepublishOnly": "pnpm build && chmod +x dist/index.js"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"mcp",
|