-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.5 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.5 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@sh41/mcp-utils",
"version": "1.1.0",
"description": "Reusable MCP primitives and utilities for programaticaly building custom Model Context Protocol servers and tools with JavaScript and TypeScript.",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shell41/mcp-utils.git"
},
"tags": [
"mcp",
"server",
"utils",
"helpers",
"functional",
"pure-functions",
"typescript"
],
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"----UTIL": "",
"prepare": "git config --local core.hooksPath .githook",
"format": "eslint --fix .",
"---BUILD": "",
"build:lock": "pu git-has-changed package.json --since HEAD~1 && npm install --no-workspaces --package-lock-only",
"build:src": "swc src --out-dir dist --ignore '**/*.test.ts' --strip-leading-paths",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.lib.json",
"prebuild": "rm -rf dist",
"build": "npm run build:src && npm run build:types",
"----CODE-ANALYSIS": "",
"lint": "eslint .",
"typecheck:code": "tsc --noEmit --project tsconfig.lib.json",
"typecheck:configs": "tsc --noEmit --project tsconfig.dev.json",
"typecheck": "npm run typecheck:code && npm run typecheck:configs",
"---RELEASE": "",
"prerelease": "npm run build",
"release": "semantic-release"
},
"dependencies": {
"@swc/helpers": "^0.5.17",
"@asd14/node-utils": "^2.0.0",
"express": "^5.1.0"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@asd14/eslint-config": "^14.4.0",
"@asd14/posix-utils": "^1.2.0",
"@asd14/prettier-config": "^1.1.0",
"@asd14/ts-config": "^1.1.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@modelcontextprotocol/sdk": "^1.18.0",
"@semantic-release/git": "^10.0.1",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.5",
"@types/express": "^5.0.3",
"@types/node": "^24.5.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.35.0",
"prettier": "^3.6.2",
"semantic-release": "^24.2.8",
"typescript": "^5.9.2",
"zod": "^3.25.76"
},
"engines": {
"node": ">=20"
}
}