@mnexium/sdk 0.1.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/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@mnexium/sdk",
3
+ "version": "0.1.0",
4
+ "description": "Official Mnexium SDK for JavaScript/TypeScript - Add memory to your AI applications",
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
+ ],
18
+ "scripts": {
19
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
20
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
21
+ "test": "vitest",
22
+ "lint": "eslint src/",
23
+ "prepublishOnly": "npm run build",
24
+ "examples:install": "npm run build && cd examples && npm pkg set dependencies.@mnexium/sdk=file:.. && npm install",
25
+ "example:hello": "cd examples && npm run hello",
26
+ "example:multi": "cd examples && npm run multi",
27
+ "example:memories": "cd examples && npm run memories",
28
+ "example:claims": "cd examples && npm run claims",
29
+ "example:state": "cd examples && npm run state",
30
+ "example:profile": "cd examples && npm run profile",
31
+ "example:prompts": "cd examples && npm run prompts",
32
+ "example:streaming": "cd examples && npm run streaming",
33
+ "example:events": "cd examples && npm run events",
34
+ "example:full": "cd examples && npm run full"
35
+ },
36
+ "keywords": [
37
+ "mnexium",
38
+ "ai",
39
+ "memory",
40
+ "llm",
41
+ "openai",
42
+ "anthropic",
43
+ "gemini",
44
+ "agent",
45
+ "chatbot"
46
+ ],
47
+ "author": "Mnexium, Inc.",
48
+ "license": "MIT",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/mnexium/sdk-js.git"
52
+ },
53
+ "homepage": "https://mnexium.com/docs",
54
+ "bugs": {
55
+ "url": "https://github.com/mnexium/sdk-js/issues"
56
+ },
57
+ "devDependencies": {
58
+ "@types/node": "^20.0.0",
59
+ "eslint": "^8.0.0",
60
+ "tsup": "^8.0.0",
61
+ "typescript": "^5.0.0",
62
+ "vitest": "^1.0.0"
63
+ },
64
+ "engines": {
65
+ "node": ">=18.0.0"
66
+ }
67
+ }