test-execution-platform-mcp 0.6.0-rc2

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 ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "test-execution-platform-mcp",
3
+ "version": "0.6.0-rc2",
4
+ "description": "QC MCP server for test execution platform",
5
+ "type": "module",
6
+ "bin": {
7
+ "test-execution-platform-mcp": "dist/index.js",
8
+ "test-execution-platform-mcp-setup": "dist/setup/cli.js"
9
+ },
10
+ "files": [
11
+ "dist/**/*.js",
12
+ "!dist/**/*.test.js",
13
+ "!dist/**/*.test.d.ts",
14
+ "dist/**/*.json",
15
+ "dist/**/*.node",
16
+ "README.md"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsc -p tsconfig.json",
20
+ "dev": "tsx src/index.ts",
21
+ "dev:setup": "tsx src/setup/cli.ts",
22
+ "test": "vitest run",
23
+ "typecheck": "tsc -p tsconfig.test.json --noEmit",
24
+ "bundle:win": "pkg . --targets node24-win-x64 --output ../dist-binaries/qc-mcp-win-x64.exe --no-bytecode --public --fallback-to-source",
25
+ "bundle:macos": "pkg . --targets node24-macos-arm64 --output ../dist-binaries/qc-mcp-macos-arm64 --no-bytecode --public --fallback-to-source && pkg . --targets node24-macos-x64 --output ../dist-binaries/qc-mcp-macos-x64 --no-bytecode --public --fallback-to-source",
26
+ "bundle:linux": "pkg . --targets node24-linux-x64 --output ../dist-binaries/qc-mcp-linux-x64 --no-bytecode --public --fallback-to-source"
27
+ },
28
+ "keywords": [
29
+ "mcp",
30
+ "model-context-protocol",
31
+ "qc",
32
+ "test-execution"
33
+ ],
34
+ "author": "VIVAS QC Team",
35
+ "license": "UNLICENSED",
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://gitlab.vivas.vn/dungnt/test_execution_platform.git"
39
+ },
40
+ "bugs": {
41
+ "url": "https://gitlab.vivas.vn/dungnt/test_execution_platform/-/issues"
42
+ },
43
+ "homepage": "https://qc.vivas.vn",
44
+ "dependencies": {
45
+ "@modelcontextprotocol/sdk": "^1.18.0",
46
+ "smol-toml": "^1.4.1",
47
+ "zod": "^3.25.76"
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "^24.12.2",
51
+ "@yao-pkg/pkg": "^6.20.0",
52
+ "tsx": "^4.21.0",
53
+ "typescript": "~6.0.2",
54
+ "vitest": "^4.1.3"
55
+ },
56
+ "pkg": {
57
+ "scripts": [
58
+ "dist/**/*.js"
59
+ ],
60
+ "assets": [
61
+ "node_modules/@modelcontextprotocol/sdk/**/*"
62
+ ],
63
+ "targets": [
64
+ "node24-win-x64",
65
+ "node24-macos-arm64",
66
+ "node24-macos-x64",
67
+ "node24-linux-x64"
68
+ ],
69
+ "outputPath": "../dist-binaries"
70
+ }
71
+ }