-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "phaset-mcp",
"description": "MCP server for AI-assisted Phaset manifest generation",
"version": "0.0.3",
"author": "Phaset",
"license": "MIT",
"keywords": [
"mcp",
"mcp-server",
"phaset",
"software-catalog",
"manifest-generation",
"model-context-protocol"
],
"type": "module",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/phasetdev/phaset-mcp.git"
},
"bugs": {
"url": "https://github.com/phasetdev/phaset-mcp/issues"
},
"homepage": "https://github.com/phasetdev/phaset-mcp#readme",
"files": [
"build",
"integration.schema.yml",
"README.md",
"LICENSE",
"!/tests"
],
"bin": {
"phaset-mcp": "./build/index.js"
},
"scripts": {
"build": "npx tsc && chmod +x build/index.js && cp README.md integration.schema.yml build/",
"inspect": "npm run build && npx @modelcontextprotocol/inspector node build/index.js",
"lint": "npx @biomejs/biome check --write ./src ./tests",
"watch": "npx tsc --watch",
"dev": "npx tsc && node build/index.js",
"clean": "rm -rf build",
"test": "npx vitest run",
"test:watch": "npx vitest",
"test:coverage": "npx vitest run --coverage",
"package": "npm pack",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"zod": "latest"
},
"devDependencies": {
"@biomejs/biome": "2",
"@modelcontextprotocol/inspector": "latest",
"@types/node": "24",
"@vitest/coverage-v8": "4",
"esbuild": "0",
"husky": "9",
"tsx": "4",
"typescript": "5",
"vitest": "4"
}
}