-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.82 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
{
"name": "wow-dev-mcp",
"author": "juemrami",
"version": "0.0.3",
"type": "module",
"packageManager": "pnpm@10.14.0",
"license": "MIT",
"description": "MCP server for World of Warcraft UI development",
"repository": {
"type": "git",
"url": "https://github.com/juemrami/wow-dev-mcp"
},
"bin": {
"wow-dev-mcp": "./dist/main.cjs"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"files": [
"src",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "rm -rf ./dist && tsup && tsx ./ci/bundle-package-json.ts",
"check": "tsc --noEmit && pnpm lint",
"watch": "tsx --watch src/main.ts",
"lint": "eslint \"**/{src,ci,test}/**/*.{ts,mjs}\"",
"lint-fix": "pnpm lint --fix",
"docker-build": "docker build -f ./ci/dockerfile -t juemrami/wow-dev-mcp .",
"docker-publish": "pnpm docker-build && docker push juemrami/wow-dev-mcp:development",
"prepublishOnly": "pnpm check && pnpm build"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@effect/ai": "^0.26.0",
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "^0.35.2",
"@effect/platform": "^0.90.4",
"@effect/platform-node": "^0.96.0",
"@effect/rpc": "^0.69.0",
"@effect/vitest": "^0.25.1",
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.10.0",
"@types/node": "^22.17.2",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"effect": "^3.17.7",
"esbuild-plugin-replace": "^1.4.0",
"eslint": "^9.33.0",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"fast-glob": "^3.3.3",
"fuzzysort": "^3.1.0",
"tsup": "^8.5.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}