@pleaseai/context-please-mcp 0.1.0 → 0.2.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 +12 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pleaseai/context-please-mcp",
|
3
|
-
"version": "0.1
|
3
|
+
"version": "0.2.1",
|
4
4
|
"description": "Model Context Protocol integration for Context Please (fork of claude-context-mcp)",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/index.js",
|
@@ -9,12 +9,15 @@
|
|
9
9
|
"dependencies": {
|
10
10
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
11
11
|
"zod": "^3.25.55",
|
12
|
-
"@pleaseai/context-please-core": "0.1
|
12
|
+
"@pleaseai/context-please-core": "0.2.1"
|
13
13
|
},
|
14
14
|
"devDependencies": {
|
15
15
|
"@types/node": "^20.0.0",
|
16
|
+
"@vitest/coverage-v8": "^2.1.8",
|
17
|
+
"memfs": "^4.14.0",
|
16
18
|
"tsx": "^4.19.4",
|
17
|
-
"typescript": "^5.0.0"
|
19
|
+
"typescript": "^5.0.0",
|
20
|
+
"vitest": "^2.1.8"
|
18
21
|
},
|
19
22
|
"files": [
|
20
23
|
"dist",
|
@@ -36,6 +39,12 @@
|
|
36
39
|
"lint": "eslint src --ext .ts",
|
37
40
|
"lint:fix": "eslint src --ext .ts --fix",
|
38
41
|
"typecheck": "tsc --noEmit",
|
42
|
+
"test": "vitest run",
|
43
|
+
"test:watch": "vitest",
|
44
|
+
"test:coverage": "vitest run --coverage",
|
45
|
+
"test:unit": "vitest run --config vitest.config.ts",
|
46
|
+
"test:integration": "vitest run --config vitest.config.integration.ts",
|
47
|
+
"test:all": "pnpm test:unit && pnpm test:integration",
|
39
48
|
"start": "tsx src/index.ts",
|
40
49
|
"start:with-env": "OPENAI_API_KEY=${OPENAI_API_KEY:your-api-key-here} MILVUS_ADDRESS=${MILVUS_ADDRESS:localhost:19530} tsx src/index.ts"
|
41
50
|
}
|