-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@proanima/uvcs-mcp",
"version": "1.1.0",
"description": "Safe MCP server for Plastic SCM and Unity Version Control (cm 10.0.16.6656+, UVCS 11.x) source-control workspaces.",
"author": "Ian Panaev, ProAnimaStudio <proanimastudio@gmail.com>",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ProAnima/unity-version-control-mcp.git"
},
"homepage": "https://github.com/ProAnima/unity-version-control-mcp#readme",
"bugs": {
"url": "https://github.com/ProAnima/unity-version-control-mcp/issues"
},
"bin": {
"uvcs-mcp": "src/cli.js",
"uvcs-mcp-doctor": "src/cli.js"
},
"files": [
"src",
"scripts",
"assets/uvcs-mcp-header.png",
"templates",
"docs",
"wiki",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"SECURITY.md",
"SUPPORT.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node src/cli.js",
"doctor": "node src/cli.js doctor",
"init": "node src/cli.js init",
"init:local": "node src/cli.js init-local",
"setup:cursor": "node src/cli.js init-local --client=cursor",
"setup:codex": "node src/cli.js init-local --client=codex",
"setup:all": "node src/cli.js init-local --client=all",
"smoke:fake": "node scripts/mcp-smoke-fake.js",
"smoke:plastic": "node scripts/mcp-smoke-plastic.js",
"test": "node --test",
"lint": "eslint .",
"release:check": "node scripts/release-check.js",
"check": "node --check src/cli.js && node --check src/server.js && node --check src/server/tool-result.js && node --check src/server/write-lock.js && node --check src/backend/cm.js && node --check src/backend/commands.js && node --check src/backend/errors.js && node --check src/backend/machine-readable.js && node --check src/backend/process-runner.js && node --check src/cli/init.js && node --check src/cli/doctor.js && node --check src/platform/paths.js && node --check src/services/audit.js && node --check src/services/doctor.js && node --check src/services/unity-meta.js && node --check src/services/style.js && node --check src/services/safety.js && node --check src/services/analytics.js && node --check src/tools/index.js && node --check src/policy/policy.js && node --check src/config/env.js && node --check scripts/fake-cm.js && node --check scripts/mcp-smoke-fake.js && node --check scripts/mcp-smoke-plastic.js && node --check scripts/release-check.js"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"unity",
"unity-version-control",
"unity-devops",
"uvcs",
"plastic-scm",
"plastic",
"version-control",
"source-control",
"scm",
"ai-ide",
"cursor",
"codex",
"claude",
"opencode",
"kiro"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0"
}
}