vme-mcp-server 0.1.9 → 0.1.10
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/README.md +1 -1
- package/dist/server.js +1 -1
- package/package.json +14 -6
package/dist/README.md
CHANGED
package/dist/server.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vme-mcp-server",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.10",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/server.js",
|
6
6
|
"bin": {
|
@@ -10,13 +10,19 @@
|
|
10
10
|
"build": "tsc",
|
11
11
|
"start": "node dist/server.js",
|
12
12
|
"dev": "tsx watch src/server.ts",
|
13
|
+
"prepare": "husky install",
|
13
14
|
"prepublishOnly": "npm run build && echo '#!/usr/bin/env node' | cat - dist/server.js > temp && mv temp dist/server.js && chmod +x dist/server.js && cp README-NPM.md dist/README.md",
|
14
|
-
"test": "
|
15
|
+
"test": "npm run test:critical",
|
15
16
|
"test:unit": "mocha tests/unit/*.test.js",
|
17
|
+
"test:binary": "mocha tests/binary/*.test.js",
|
18
|
+
"test:critical": "npm run test:binary && npm run test:mcp",
|
16
19
|
"test:integration": "mocha tests/integration/*.test.js",
|
17
|
-
"test:
|
18
|
-
"test:
|
19
|
-
"test:
|
20
|
+
"test:mcp": "mocha tests/integration/mcp-protocol.test.js",
|
21
|
+
"test:package": "mocha tests/package/*.test.js",
|
22
|
+
"test:all": "mocha tests/**/*.test.js",
|
23
|
+
"test:coverage": "nyc mocha tests/**/*.test.js",
|
24
|
+
"lint": "echo 'Linting not configured yet'",
|
25
|
+
"precommit": "npm run lint && npm run test:critical && npm run build"
|
20
26
|
},
|
21
27
|
"keywords": [
|
22
28
|
"mcp",
|
@@ -43,11 +49,13 @@
|
|
43
49
|
"axios": "^1.9.0",
|
44
50
|
"dotenv": "^16.5.0",
|
45
51
|
"tsx": "^4.19.4",
|
46
|
-
"typescript": "^5.3.3"
|
52
|
+
"typescript": "^5.3.3",
|
53
|
+
"vme-mcp-server": "^0.1.9"
|
47
54
|
},
|
48
55
|
"devDependencies": {
|
49
56
|
"@types/node": "^22.15.29",
|
50
57
|
"chai": "^5.2.0",
|
58
|
+
"husky": "^9.1.7",
|
51
59
|
"mocha": "^10.2.0",
|
52
60
|
"nyc": "^15.1.0"
|
53
61
|
}
|