-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.71 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
{
"name": "findmine-mcp",
"version": "0.2.0",
"description": "MCP server for FindMine's styling and outfitting recommendations",
"type": "module",
"bin": {
"findmine-mcp": "build/index.js"
},
"main": "./build/index.js",
"files": [
"build",
"CLAUDE.md",
"CONTRIBUTING.md"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.2",
"node-fetch": "^3.3.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^20.11.24",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"jiti": "^2.6.1",
"prettier": "^3.7.4",
"typescript": "^5.3.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/findmine/findmine-mcp.git"
},
"keywords": [
"findmine",
"mcp",
"claude",
"anthropic",
"stylist",
"fashion",
"recommendations"
],
"author": "FindMine",
"license": "MIT",
"bugs": {
"url": "https://github.com/findmine/findmine-mcp/issues"
},
"homepage": "https://github.com/findmine/findmine-mcp#readme",
"engines": {
"node": ">=18.0.0"
}
}