@jsondb-cloud/mcp 1.0.11 → 1.0.12
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/package.json +11 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsondb-cloud/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server for jsondb.cloud — lets AI agents interact with your JSON database",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"dev": "tsup src/index.ts --format cjs,esm --watch",
|
|
24
24
|
"lint": "eslint src/",
|
|
25
25
|
"format:check": "prettier --check .",
|
|
26
|
-
"test": "vitest run"
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"prepare": "husky"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
30
|
"@jsondb-cloud/client": "*",
|
|
@@ -36,6 +37,8 @@
|
|
|
36
37
|
"@typescript-eslint/parser": "^8.56.1",
|
|
37
38
|
"eslint": "^10.0.2",
|
|
38
39
|
"eslint-config-prettier": "^10.1.8",
|
|
40
|
+
"husky": "^9.1.7",
|
|
41
|
+
"lint-staged": "^16.2.7",
|
|
39
42
|
"prettier": "^3.8.1",
|
|
40
43
|
"tsup": "^8.0.0",
|
|
41
44
|
"typescript": "^5.4.0",
|
|
@@ -58,5 +61,11 @@
|
|
|
58
61
|
},
|
|
59
62
|
"engines": {
|
|
60
63
|
"node": ">=20.19.0"
|
|
64
|
+
},
|
|
65
|
+
"lint-staged": {
|
|
66
|
+
"src/**/*.ts": [
|
|
67
|
+
"prettier --write",
|
|
68
|
+
"eslint --fix"
|
|
69
|
+
]
|
|
61
70
|
}
|
|
62
71
|
}
|