@nuberea/sdk 0.0.1 → 0.0.3
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/openclaw.plugin.json +14 -0
- package/package.json +8 -2
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "nuberea",
|
|
3
|
+
"name": "@nuberea/sdk",
|
|
4
|
+
"description": "NuBerea biblical data platform — MCP tools for Bible texts, Hebrew/Greek morphology, lexicons, and Dead Sea Scrolls",
|
|
5
|
+
"version": "0.0.3",
|
|
6
|
+
"activation": {
|
|
7
|
+
"onCapabilities": ["tool"]
|
|
8
|
+
},
|
|
9
|
+
"configSchema": {
|
|
10
|
+
"type": "object",
|
|
11
|
+
"additionalProperties": false,
|
|
12
|
+
"properties": {}
|
|
13
|
+
}
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuberea/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "NuBerea SDK — Client library for the NuBerea biblical data platform. Query morphological corpora, lexicons, Bible texts, manuscripts, and scrolls.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"files": [
|
|
22
22
|
"dist",
|
|
23
23
|
"README.md",
|
|
24
|
-
"LICENSE"
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"openclaw.plugin.json"
|
|
25
26
|
],
|
|
26
27
|
"scripts": {
|
|
27
28
|
"build": "tsc",
|
|
@@ -57,6 +58,11 @@
|
|
|
57
58
|
"engines": {
|
|
58
59
|
"node": ">=18"
|
|
59
60
|
},
|
|
61
|
+
"openclaw": {
|
|
62
|
+
"extensions": [
|
|
63
|
+
"./dist/index.js"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
60
66
|
"devDependencies": {
|
|
61
67
|
"@types/node": "^22.0.0",
|
|
62
68
|
"tsx": "^4.19.0",
|