-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.34 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
{
"name": "materialpilot",
"version": "0.1.0",
"private": true,
"description": "A safe MCP integration for Material Maker",
"license": "Apache-2.0",
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@11.9.0",
"scripts": {
"build": "turbo run build",
"check": "turbo run typecheck lint test",
"clean": "turbo run clean",
"dev": "pnpm --filter @materialpilot/mcp-server dev",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"compatibility": "node scripts/run-compatibility-suite.mjs",
"lint": "turbo run lint",
"package": "node scripts/package-release.mjs",
"generate:sbom": "node scripts/generate-sbom.mjs",
"test": "turbo run test",
"test:godot": "pnpm --filter @materialpilot/material-maker-bridge test:godot",
"test:material-maker": "pnpm --filter @materialpilot/material-maker-bridge test:material-maker",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck",
"materialpilot": "node apps/mcp-server/dist/main.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.7.0",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"turbo": "^2.5.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.38.0",
"vitest": "^4.1.0"
}
}