awesome-copilot-mcp 0.0.1 → 0.1.0
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/cli.js +1 -1
- package/metadata.json +1 -1
- package/package.json +16 -4
package/dist/cli.js
CHANGED
|
@@ -51,7 +51,7 @@ const program = new commander_1.Command();
|
|
|
51
51
|
program
|
|
52
52
|
.name('awesome-copilot-mcp')
|
|
53
53
|
.description('Model Context Protocol server for awesome-copilot agents and collections')
|
|
54
|
-
.version('0.0
|
|
54
|
+
.version('0.1.0');
|
|
55
55
|
// Global options
|
|
56
56
|
program
|
|
57
57
|
.option('--json', 'Output in JSON format')
|
package/metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "awesome-copilot-mcp",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Model Context Protocol server for awesome-copilot agents and collections",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"version": "node scripts/update-cli-version.js",
|
|
17
|
-
"build": "tsc -p tsconfig.build.json",
|
|
17
|
+
"build": "tsc -p tsconfig.build.json && chmod +x dist/cli.js",
|
|
18
18
|
"clean": "rm -rf dist coverage",
|
|
19
19
|
"dev": "tsc --watch",
|
|
20
20
|
"generate-metadata": "node scripts/generate-metadata.js --local-repo awesome-copilot-source",
|
|
@@ -35,8 +35,10 @@
|
|
|
35
35
|
"test": "vitest run",
|
|
36
36
|
"test:watch": "vitest",
|
|
37
37
|
"test:coverage": "vitest run --coverage",
|
|
38
|
-
"test:performance": "vitest run test/metadata-performance.test.ts"
|
|
38
|
+
"test:performance": "vitest run test/metadata-performance.test.ts",
|
|
39
|
+
"release": "semantic-release"
|
|
39
40
|
},
|
|
41
|
+
"prepare": "husky install",
|
|
40
42
|
"keywords": [
|
|
41
43
|
"mcp",
|
|
42
44
|
"model-context-protocol",
|
|
@@ -80,6 +82,16 @@
|
|
|
80
82
|
"eslint": "^8.57.1",
|
|
81
83
|
"supertest": "^6.3.4",
|
|
82
84
|
"typescript": "^5.3.0",
|
|
83
|
-
"vitest": "^4.0.16"
|
|
85
|
+
"vitest": "^4.0.16",
|
|
86
|
+
"semantic-release": "^21.0.0",
|
|
87
|
+
"@semantic-release/changelog": "^6.0.0",
|
|
88
|
+
"@semantic-release/git": "^10.0.0",
|
|
89
|
+
"@semantic-release/github": "^9.0.0",
|
|
90
|
+
"@semantic-release/commit-analyzer": "^9.0.0",
|
|
91
|
+
"@semantic-release/release-notes-generator": "^11.0.0",
|
|
92
|
+
"conventional-changelog-conventionalcommits": "^6.0.0",
|
|
93
|
+
"husky": "^8.0.0",
|
|
94
|
+
"@commitlint/cli": "^17.0.0",
|
|
95
|
+
"@commitlint/config-conventional": "^17.0.0"
|
|
84
96
|
}
|
|
85
97
|
}
|