mirror of
https://github.com/langchain-ai/deepagentsjs.git
synced 2026-07-23 04:45:27 -04:00
8740987427
Bumps the major-deps-updates-main group with 2 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [@types/uuid](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/uuid). Updates `@types/node` from 22.19.3 to 25.0.7 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@types/uuid` from 10.0.0 to 11.0.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/uuid) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 25.0.7 dependency-type: direct:development update-type: version-update:semver-major dependency-group: major-deps-updates-main - dependency-name: "@types/uuid" dependency-version: 11.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: major-deps-updates-main ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
76 lines
1.9 KiB
JSON
76 lines
1.9 KiB
JSON
{
|
|
"name": "deepagents-cli",
|
|
"version": "0.0.16",
|
|
"description": "DeepAgents CLI - AI Coding Assistant for your terminal",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"bin": {
|
|
"deepagents": "dist/cli.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist/*.js",
|
|
"dist/*.d.ts",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"clean": "rm -rf dist/ .tsdown/",
|
|
"dev": "tsdown --watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepublishOnly": "pnpm build",
|
|
"build:cli": "tsx scripts/build.ts",
|
|
"build:cli:linux-x64": "tsx scripts/build.ts --platform linux-x64",
|
|
"build:cli:linux-arm64": "tsx scripts/build.ts --platform linux-arm64",
|
|
"build:cli:darwin-x64": "tsx scripts/build.ts --platform darwin-x64",
|
|
"build:cli:darwin-arm64": "tsx scripts/build.ts --platform darwin-arm64",
|
|
"build:cli:win32-x64": "tsx scripts/build.ts --platform win32-x64",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/langchain-ai/deepagentsjs.git",
|
|
"directory": "libs/cli"
|
|
},
|
|
"keywords": [
|
|
"deepagents",
|
|
"cli",
|
|
"ai",
|
|
"coding-assistant",
|
|
"langchain",
|
|
"langgraph",
|
|
"terminal"
|
|
],
|
|
"author": "LangChain",
|
|
"bugs": {
|
|
"url": "https://github.com/langchain-ai/deepagentsjs/issues"
|
|
},
|
|
"homepage": "https://github.com/langchain-ai/deepagentsjs/tree/main/libs/cli#readme",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"optionalDependencies": {
|
|
"@deepagents-cli/darwin-arm64": "0.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/node": "^25.0.8",
|
|
"fs-extra": "^11.3.0",
|
|
"tsdown": "^0.19.0",
|
|
"tsx": "^4.20.5",
|
|
"typescript": "^5.9.2",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|