mirror of
https://github.com/langchain-ai/deepagentsjs.git
synced 2026-08-26 18:26:32 -04:00
02c1c7fa38
* chore: version packages * cr --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Hunter Lovell <hunter@hntrl.io>
78 lines
1.7 KiB
JSON
78 lines
1.7 KiB
JSON
{
|
|
"name": "@langchain/sandbox-standard-tests",
|
|
"version": "1.0.0",
|
|
"description": "Standard integration tests for deepagents sandbox providers",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"clean": "rm -rf dist/ .tsdown/",
|
|
"dev": "tsc --watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepublishOnly": "pnpm build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/langchain-ai/deepagentsjs.git"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"agents",
|
|
"langchain",
|
|
"typescript",
|
|
"sandbox",
|
|
"testing"
|
|
],
|
|
"author": "LangChain",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/langchain-ai/deepagentsjs/issues"
|
|
},
|
|
"homepage": "https://github.com/langchain-ai/deepagentsjs#readme",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"./vitest": {
|
|
"import": {
|
|
"types": "./dist/vitest.d.ts",
|
|
"default": "./dist/vitest.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/vitest.d.cts",
|
|
"default": "./dist/vitest.cjs"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"peerDependencies": {
|
|
"deepagents": ">=1.9.0-alpha.0",
|
|
"vitest": ">=1.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"vitest": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"deepagents": "workspace:*",
|
|
"@tsconfig/recommended": "^1.0.13",
|
|
"@types/node": "^25.2.3",
|
|
"tsdown": "^0.21.4",
|
|
"typescript": "^6.0.2",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|