add-mcp 1.7.0 → 1.9.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/README.md +72 -2
- package/dist/index.js +1048 -23
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "add-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Add MCP servers to your favorite coding agents with a single command.",
|
|
5
5
|
"author": "Andre Landgraf <andre@neon.tech>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -16,12 +16,13 @@
|
|
|
16
16
|
"fmt": "prettier --write .",
|
|
17
17
|
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
18
18
|
"dev": "tsx src/index.ts",
|
|
19
|
-
"test": "tsx tests/source-parser.test.ts && tsx tests/agents.test.ts && tsx tests/config.test.ts && tsx tests/installer.test.ts && tsx tests/find.test.ts && tsx tests/e2e/install.test.ts && tsx tests/e2e/cli.test.ts",
|
|
20
|
-
"test:unit": "tsx tests/source-parser.test.ts && tsx tests/agents.test.ts && tsx tests/config.test.ts && tsx tests/installer.test.ts && tsx tests/find.test.ts",
|
|
19
|
+
"test": "tsx tests/source-parser.test.ts && tsx tests/agents.test.ts && tsx tests/config.test.ts && tsx tests/installer.test.ts && tsx tests/find.test.ts && tsx tests/package-arguments.test.ts && tsx tests/template.test.ts && tsx tests/reader.test.ts && tsx tests/formats-remove.test.ts && tsx tests/e2e/install.test.ts && tsx tests/e2e/cli.test.ts",
|
|
20
|
+
"test:unit": "tsx tests/source-parser.test.ts && tsx tests/agents.test.ts && tsx tests/config.test.ts && tsx tests/installer.test.ts && tsx tests/find.test.ts && tsx tests/package-arguments.test.ts && tsx tests/template.test.ts && tsx tests/reader.test.ts && tsx tests/formats-remove.test.ts",
|
|
21
21
|
"registry:sort": "tsx scripts/sort-registry.ts",
|
|
22
22
|
"registry:verify": "tsx scripts/verify-registry.ts",
|
|
23
23
|
"test:e2e": "tsx tests/e2e/install.test.ts && tsx tests/e2e/cli.test.ts",
|
|
24
24
|
"typecheck": "tsc --noEmit",
|
|
25
|
+
"fallow": "fallow",
|
|
25
26
|
"prepublishOnly": "npm run build"
|
|
26
27
|
},
|
|
27
28
|
"keywords": [
|
|
@@ -45,11 +46,11 @@
|
|
|
45
46
|
],
|
|
46
47
|
"repository": {
|
|
47
48
|
"type": "git",
|
|
48
|
-
"url": "git+https://github.com/
|
|
49
|
+
"url": "git+https://github.com/neon-solutions/add-mcp.git"
|
|
49
50
|
},
|
|
50
|
-
"homepage": "https://github.com/
|
|
51
|
+
"homepage": "https://github.com/neon-solutions/add-mcp#readme",
|
|
51
52
|
"bugs": {
|
|
52
|
-
"url": "https://github.com/
|
|
53
|
+
"url": "https://github.com/neon-solutions/add-mcp/issues"
|
|
53
54
|
},
|
|
54
55
|
"dependencies": {
|
|
55
56
|
"@clack/prompts": "^0.9.1",
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
"devDependencies": {
|
|
63
64
|
"@types/js-yaml": "^4.0.9",
|
|
64
65
|
"@types/node": "^22.10.0",
|
|
66
|
+
"fallow": "^2.61.0",
|
|
65
67
|
"prettier": "^3.8.1",
|
|
66
68
|
"tsup": "^8.3.5",
|
|
67
69
|
"tsx": "^4.19.2",
|