project-customization-mcp 0.1.0 → 0.1.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/bin/cli.js +7 -0
- package/package.json +9 -7
package/bin/cli.js
ADDED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "project-customization-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "An MCP server for automating project customization based on best practices. Analyzes projects and generates customization files for any IDE or tool that supports the Model Context Protocol.",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"project-customization-mcp": "./
|
|
7
|
+
"project-customization-mcp": "./bin/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc",
|
|
@@ -14,8 +14,10 @@
|
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"build",
|
|
17
|
+
"bin",
|
|
17
18
|
"LICENSE",
|
|
18
|
-
"README.md"
|
|
19
|
+
"README.md",
|
|
20
|
+
"package.json"
|
|
19
21
|
],
|
|
20
22
|
"keywords": [
|
|
21
23
|
"mcp",
|
|
@@ -27,16 +29,16 @@
|
|
|
27
29
|
"ai",
|
|
28
30
|
"llm"
|
|
29
31
|
],
|
|
30
|
-
"author": "
|
|
32
|
+
"author": "Ivan Arsenović <ivanarsenovic015@gmail.com>",
|
|
31
33
|
"license": "MIT",
|
|
32
34
|
"type": "module",
|
|
33
35
|
"repository": {
|
|
34
36
|
"type": "git",
|
|
35
|
-
"url": "https://github.com/
|
|
37
|
+
"url": "https://github.com/e1imba/project-customization-mcp.git"
|
|
36
38
|
},
|
|
37
|
-
"homepage": "https://github.com/
|
|
39
|
+
"homepage": "https://github.com/e1imba/project-customization-mcp#readme",
|
|
38
40
|
"bugs": {
|
|
39
|
-
"url": "https://github.com/
|
|
41
|
+
"url": "https://github.com/e1imba/project-customization-mcp/issues"
|
|
40
42
|
},
|
|
41
43
|
"dependencies": {
|
|
42
44
|
"@modelcontextprotocol/sdk": "^1.25.3",
|