@getzep/zep-js
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -8,2 +8,3 @@ import MemoryManager from "./memory_manager"; | ||
export { Memory, Message, IMessage, Summary, ISummary, IMemory, MemorySearchPayload, IMemorySearchPayload, MemorySearchResult, IMemorySearchResult, Session, ISession, } from "./memory_models"; | ||
export { IAddCollectionParams, IUpdateCollectionParams, IUpdateDocumentParams, ISearchQuery, } from "./interfaces"; | ||
export { APIError, NotFoundError, AuthenticationError } from "./errors"; |
@@ -8,2 +8,3 @@ import MemoryManager from "./memory_manager"; | ||
export { Memory, Message, IMessage, Summary, ISummary, IMemory, MemorySearchPayload, IMemorySearchPayload, MemorySearchResult, IMemorySearchResult, Session, ISession, } from "./memory_models"; | ||
export { IAddCollectionParams, IUpdateCollectionParams, IUpdateDocumentParams, ISearchQuery, } from "./interfaces"; | ||
export { APIError, NotFoundError, AuthenticationError } from "./errors"; |
188
package.json
{ | ||
"show-config": "tsc --showConfig", | ||
"name": "@getzep/zep-js", | ||
"version": "0.6.0", | ||
"description": "Zep JS Client", | ||
"private": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"main": "dist/index.js", | ||
"module": "dist/index.esm.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"lint": "eslint --ext .js,.ts src/", | ||
"build": "npm run lint && tsc && tsc --module ESNext --outDir dist/esm", | ||
"start": "node dist/index.js", | ||
"dev": "ts-node src/main.ts", | ||
"clean": "rm -rf dist/*", | ||
"prepublishOnly": "npm run clean && npm run build && npm run test && npm run docbuild", | ||
"prepare": "npm run build", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"docbuild": "typedoc --out docs/ --excludePrivate --excludeInternal --excludeExternals src/" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/getzep/zep-js/" | ||
}, | ||
"keywords": [ | ||
"zep", | ||
"js" | ||
], | ||
"author": "Daniel Chalef <daniel@getzep.com>", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"semver": "^7.5.4", | ||
"typescript": "^5.1.6" | ||
}, | ||
"devDependencies": { | ||
"@faker-js/faker": "^8.0.2", | ||
"@types/jest": "^29.5.3", | ||
"@types/node": "^16.18.39", | ||
"@types/uuid": "^9.0.2", | ||
"@typescript-eslint/eslint-plugin": "^5.62.0", | ||
"@typescript-eslint/parser": "^5.62.0", | ||
"dotenv": "^16.3.1", | ||
"eslint": "^8.46.0", | ||
"eslint-config-airbnb-base": "15.0.0", | ||
"eslint-config-prettier": "^8.10.0", | ||
"eslint-plugin-import": "^2.28.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"jest": "^29.6.2", | ||
"jest-fetch-mock": "^3.0.3", | ||
"jsdoc": "^4.0.2", | ||
"prettier": "^2.8.8", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "^10.9.1", | ||
"typedoc": "^0.24.8", | ||
"uuid": "^9.0.0" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"jest": { | ||
"preset": "ts-jest/presets/default-esm", | ||
"testEnvironment": "node", | ||
"modulePathIgnorePatterns": [ | ||
"dist/", | ||
"docs/" | ||
], | ||
"testMatch": [ | ||
"**/src/tests/**/*.ts?(x)", | ||
"!**/?(*.)+(spec|test).js" | ||
], | ||
"moduleNameMapper": { | ||
"^(\\.{1,2}/.*)\\.js$": "$1" | ||
}, | ||
"transform": { | ||
"^.+\\.m?[tj]sx?$": [ | ||
"ts-jest", | ||
{ | ||
"useESM": true | ||
} | ||
] | ||
}, | ||
"setupFiles": [ | ||
"dotenv/config", | ||
"./__tests__/setup/setupJest.js" | ||
], | ||
"testTimeout": 20000, | ||
"transformIgnorePatterns": [ | ||
"/node_modules/", | ||
"^.+\\.js$" | ||
"show-config": "tsc --showConfig", | ||
"name": "@getzep/zep-js", | ||
"version": "0.6.1", | ||
"description": "Zep JS Client", | ||
"private": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"main": "dist/index.js", | ||
"module": "dist/index.esm.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"lint": "eslint --ext .js,.ts src/", | ||
"build": "npm run lint && tsc && tsc --module ESNext --outDir dist/esm", | ||
"start": "node dist/index.js", | ||
"dev": "ts-node src/main.ts", | ||
"clean": "rm -rf dist/*", | ||
"prepublishOnly": "npm run clean && npm run build && npm run test && npm run docbuild", | ||
"prepare": "npm run build", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"docbuild": "typedoc --out docs/ --excludePrivate --excludeInternal --excludeExternals src/" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/getzep/zep-js/" | ||
}, | ||
"keywords": [ | ||
"zep", | ||
"vectors", | ||
"llm", | ||
"embeddings" | ||
], | ||
"author": "Daniel Chalef <daniel@getzep.com>", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"semver": "^7.5.4", | ||
"typescript": "^5.1.6" | ||
}, | ||
"devDependencies": { | ||
"@faker-js/faker": "^8.0.2", | ||
"@types/jest": "^29.5.3", | ||
"@types/node": "^16.18.39", | ||
"@types/uuid": "^9.0.2", | ||
"@typescript-eslint/eslint-plugin": "^5.62.0", | ||
"@typescript-eslint/parser": "^5.62.0", | ||
"dotenv": "^16.3.1", | ||
"eslint": "^8.46.0", | ||
"eslint-config-airbnb-base": "15.0.0", | ||
"eslint-config-prettier": "^8.10.0", | ||
"eslint-plugin-import": "^2.28.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"jest": "^29.6.2", | ||
"jest-fetch-mock": "^3.0.3", | ||
"jsdoc": "^4.0.2", | ||
"prettier": "^2.8.8", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "^10.9.1", | ||
"typedoc": "^0.24.8", | ||
"uuid": "^9.0.0" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"jest": { | ||
"preset": "ts-jest/presets/default-esm", | ||
"testEnvironment": "node", | ||
"modulePathIgnorePatterns": [ | ||
"dist/", | ||
"docs/" | ||
], | ||
"testMatch": [ | ||
"**/src/tests/**/*.ts?(x)", | ||
"!**/?(*.)+(spec|test).js" | ||
], | ||
"moduleNameMapper": { | ||
"^(\\.{1,2}/.*)\\.js$": "$1" | ||
}, | ||
"transform": { | ||
"^.+\\.m?[tj]sx?$": [ | ||
"ts-jest", | ||
{ | ||
"useESM": true | ||
} | ||
] | ||
} | ||
}, | ||
"setupFiles": [ | ||
"dotenv/config", | ||
"./__tests__/setup/setupJest.js" | ||
], | ||
"testTimeout": 20000, | ||
"transformIgnorePatterns": [ | ||
"/node_modules/", | ||
"^.+\\.js$" | ||
] | ||
} | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
238748
4941
44