@memnexus-ai/typescript-sdk 1.1.1
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/LICENSE +21 -0
- package/README.md +197 -0
- package/dist/index.d.ts +4821 -0
- package/dist/index.js +5581 -0
- package/dist/index.mjs +5521 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@memnexus-ai/typescript-sdk",
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"description": "Core API service for MemNexus - single service boundary for all data access",
|
|
5
|
+
"source": "./src/index.ts",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"browser": "./dist/index.js",
|
|
9
|
+
"unpkg": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "tsc --noEmit",
|
|
13
|
+
"build": "tsup-node src/index.ts --format cjs,esm --dts --clean",
|
|
14
|
+
"prepublishOnly": "chmod +x ./scripts/prepublish.sh && ./scripts/prepublish.sh && npm run build",
|
|
15
|
+
"test-example": "cd examples && tsc --noEmit"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"typescript",
|
|
19
|
+
"sdk",
|
|
20
|
+
"api",
|
|
21
|
+
"client"
|
|
22
|
+
],
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"README.md"
|
|
26
|
+
],
|
|
27
|
+
"author": "MemNexus Team",
|
|
28
|
+
"homepage": "https://github.com/memnexus-ai/mx-releases",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/node": "^22.13.9",
|
|
32
|
+
"tsup": "^6.7.0",
|
|
33
|
+
"typescript": "5.3.3"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"zod": "3.22.0"
|
|
37
|
+
},
|
|
38
|
+
"exports": {
|
|
39
|
+
".": {
|
|
40
|
+
"require": "./dist/index.js",
|
|
41
|
+
"import": "./dist/index.js",
|
|
42
|
+
"types": "./dist/index.d.ts"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/memnexus-ai/mx-releases",
|
|
48
|
+
"directory": "packages/typescript-sdk"
|
|
49
|
+
}
|
|
50
|
+
}
|