@memoryintelligence/sdk 2.0.0
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/README.md +691 -0
- package/dist/index.d.mts +953 -0
- package/dist/index.d.ts +953 -0
- package/dist/index.js +27 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +27 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@memoryintelligence/sdk",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Official JavaScript/TypeScript SDK for Memory Intelligence",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup",
|
|
22
|
+
"dev": "tsup --watch",
|
|
23
|
+
"test": "vitest run --exclude tests/e2e.test.ts",
|
|
24
|
+
"test:unit": "vitest run --exclude tests/e2e.test.ts",
|
|
25
|
+
"test:e2e": "vitest run tests/e2e.test.ts",
|
|
26
|
+
"test:watch": "vitest",
|
|
27
|
+
"lint": "eslint src --ext .ts",
|
|
28
|
+
"typecheck": "tsc --noEmit",
|
|
29
|
+
"prepublishOnly": "npm run build"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"memory-intelligence",
|
|
33
|
+
"semantic-search",
|
|
34
|
+
"meaning",
|
|
35
|
+
"umo",
|
|
36
|
+
"ai",
|
|
37
|
+
"embeddings",
|
|
38
|
+
"typescript"
|
|
39
|
+
],
|
|
40
|
+
"author": "Memory Intelligence",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "https://github.com/somewhere11/MemoryIntelligence.git",
|
|
45
|
+
"directory": "sdk/js"
|
|
46
|
+
},
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/somewhere11/MemoryIntelligence/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://memoryintelligence.io",
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": "^20.10.0",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
54
|
+
"@typescript-eslint/parser": "^8.58.1",
|
|
55
|
+
"eslint": "^8.56.0",
|
|
56
|
+
"tsup": "^8.0.1",
|
|
57
|
+
"typescript": "^5.3.3",
|
|
58
|
+
"vitest": "^4.1.4"
|
|
59
|
+
},
|
|
60
|
+
"engines": {
|
|
61
|
+
"node": ">=18.0.0"
|
|
62
|
+
}
|
|
63
|
+
}
|