-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.08 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.08 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "mcmodding-mcp",
"version": "0.4.3",
"packageManager": "pnpm@10.30.0",
"description": "MCP server providing AI assistants with up-to-date Minecraft modding documentation for Fabric and NeoForge",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcmodding-mcp": "dist/index.js"
},
"files": [
"dist",
"scripts/postinstall.js"
],
"scripts": {
"build": "tsc",
"build:prod": "pnpm run build",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"index-docs": "npx tsx --expose-gc --max-old-space-size=6144 scripts/index-docs.ts -- --sitemap --embeddings",
"index-docs:prod": "npx tsx --expose-gc --max-old-space-size=6144 scripts/index-docs.ts -- --sitemap --embeddings --force",
"index-docs:no-embeddings": "npx tsx --expose-gc --max-old-space-size=4096 scripts/index-docs.ts -- --sitemap",
"clean": "rimraf dist",
"clean:all": "rimraf dist data",
"prebuild": "pnpm run clean",
"prebuild:prod": "pnpm run clean",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "",
"release:auto": "semantic-release",
"release": "pnpm run build:prod && pnpm version",
"validate": "pnpm run typecheck && pnpm run lint && pnpm run test",
"db:manifest": "npx tsx scripts/generate-db-manifest.ts",
"db:install-optional": "npx tsx src/index.ts install",
"index-mappings": "npx tsx scripts/index-mappings.ts",
"index-mappings:force": "npx tsx scripts/index-mappings.ts --force",
"mappings:manifest": "npx tsx scripts/generate-mappings-manifest.ts",
"mappings:analyze": "npx tsx scripts/analyze-mappings.ts",
"index-mod-examples": "npx tsx scripts/index-mod-examples.ts",
"mod-examples:manifest": "npx tsx scripts/generate-mod-examples-manifest.ts"
},
"keywords": [
"minecraft",
"modding",
"fabric",
"neoforge",
"mcp",
"model-context-protocol",
"ai",
"documentation"
],
"author": "OGMatrix",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^11.7.0",
"cheerio": "^1.0.0",
"jsonrepair": "^3.13.1",
"node-fetch": "^3.3.2",
"sharp": "^0.34.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/adm-zip": "^0.5.6",
"@types/better-sqlite3": "^7.6.12",
"@types/jquery": "^3.5.33",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"adm-zip": "^0.5.16",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitest": "^4.0.15"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/OGMatrix/mcmodding-mcp.git"
},
"bugs": {
"url": "https://github.com/OGMatrix/mcmodding-mcp/issues"
},
"homepage": "https://github.com/OGMatrix/mcmodding-mcp#readme",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"protobufjs",
"sharp"
]
}
}