opik-langchain
Version:
Opik TypeScript and JavaScript SDK integration with LangChain
72 lines (71 loc) • 1.62 kB
JSON
{
"name": "opik-langchain",
"description": "Opik TypeScript and JavaScript SDK integration with LangChain",
"version": "1.0.0",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comet-ml/opik.git",
"directory": "blob/sdks/typescript/src/opik/integrations/opik-langchain"
},
"homepage": "https://www.comet.com/docs/opik/",
"author": {
"name": "Comet",
"email": "support@comet.com",
"url": "https://github.com/comet-ml"
},
"bugs": {
"url": "https://github.com/comet-ml/opik/issues",
"email": "support@comet.com"
},
"license": "Apache-2.0",
"keywords": [
"opik",
"langchain",
"langchain-integration",
"sdk",
"javascript",
"javascript-sdk",
"typescript",
"typescript-sdk",
"comet"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"lint": "eslint '**/*.{ts,tsx}'",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,md}'",
"test": "vitest"
},
"files": [
"dist/**/*",
"README.md"
],
"dependencies": {
"opik": "^1.6.12"
},
"peerDependencies": {
"@langchain/core": "^0.3.42"
},
"devDependencies": {
"typescript": "^5.7.2",
"vitest": "^3.0.5"
}
}