@mcp-abap-adt/core 4.5.1 → 4.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/package.json +10 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-abap-adt/core",
|
|
3
3
|
"mcpName": "io.github.fr0ster/mcp-abap-adt",
|
|
4
|
-
"version": "4.5.
|
|
4
|
+
"version": "4.5.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -87,7 +87,8 @@
|
|
|
87
87
|
"docker:logs:headerless": "cd docker && docker-compose -f docker-compose.headerless.yml logs -f",
|
|
88
88
|
"docker:rebuild": "npm run docker:down && npm run docker:build && npm run docker:up",
|
|
89
89
|
"docker:rebuild:package": "npm run docker:down:package && npm run docker:build:package && npm run docker:up:package",
|
|
90
|
-
"docker:rebuild:headerless": "npm run docker:down:headerless && npm run docker:build:headerless && npm run docker:up:headerless"
|
|
90
|
+
"docker:rebuild:headerless": "npm run docker:down:headerless && npm run docker:build:headerless && npm run docker:up:headerless",
|
|
91
|
+
"prepare": "husky"
|
|
91
92
|
},
|
|
92
93
|
"keywords": [
|
|
93
94
|
"abap",
|
|
@@ -121,8 +122,10 @@
|
|
|
121
122
|
"dotenv": "^17.3.1",
|
|
122
123
|
"express": "^5.1.0",
|
|
123
124
|
"express-rate-limit": "^8.3.0",
|
|
125
|
+
"husky": "^9.1.7",
|
|
124
126
|
"jest": "^30.2.0",
|
|
125
127
|
"jest-util": "^30.2.0",
|
|
128
|
+
"lint-staged": "^16.4.0",
|
|
126
129
|
"open": "^11.0.0",
|
|
127
130
|
"pino": "^10.3.0",
|
|
128
131
|
"pino-pretty": "^13.1.3",
|
|
@@ -207,5 +210,10 @@
|
|
|
207
210
|
"testTimeout": 600000,
|
|
208
211
|
"globalSetup": "<rootDir>/src/__tests__/integration/globalSetup.ts"
|
|
209
212
|
},
|
|
213
|
+
"lint-staged": {
|
|
214
|
+
"src/**/*.{ts,js}": [
|
|
215
|
+
"biome check --write"
|
|
216
|
+
]
|
|
217
|
+
},
|
|
210
218
|
"private": false
|
|
211
219
|
}
|