-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.69 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.69 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@perforce/p4plan-mcp",
"mcpName": "io.github.perforce/p4plan-mcp",
"version": "2026.2.1",
"description": "P4 Plan MCP (Model Context Protocol) Server",
"author": "Perforce Software, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/perforce/p4plan-mcp.git"
},
"bin": {
"p4-plan-mcp": "dist/main.js"
},
"files": [
"dist/",
"skills/",
"README.md",
"LICENSE.txt"
],
"engines": {
"node": ">=18",
"npm": ">=10"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"postbuild": "node scripts/postbuild.js",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"@nestjs/axios": "4.0.1",
"@nestjs/common": "11.1.17",
"@nestjs/config": "4.0.4",
"@nestjs/core": "11.1.18",
"class-transformer": "0.5.1",
"class-validator": "0.15.1",
"nest-winston": "1.10.2",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"winston": "3.19.0",
"zod": "4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@nestjs/cli": "11.0.19",
"@nestjs/schematics": "11.0.10",
"@nestjs/testing": "11.1.15",
"@types/jest": "30.0.0",
"@types/node": "25.3.3",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.58.1",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.4.0",
"jest": "30.3.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"source-map-support": "0.5.21",
"ts-jest": "29.4.9",
"ts-loader": "9.5.4",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.9.3",
"typescript-eslint": "8.58.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}