mirror of
https://github.com/langchain-ai/deepagentsjs.git
synced 2026-07-23 04:45:27 -04:00
9acbdca34d
Bumps the minor-deps-updates-main group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [globals](https://github.com/sindresorhus/globals) | `17.0.0` | `17.2.0` | | [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.1` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.53.1` | `8.54.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.10` | `25.1.0` | | [tsdown](https://github.com/rolldown/tsdown) | `0.19.0` | `0.20.1` | Updates `globals` from 17.0.0 to 17.2.0 - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](https://github.com/sindresorhus/globals/compare/v17.0.0...v17.2.0) Updates `prettier` from 3.7.4 to 3.8.1 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.7.4...3.8.1) Updates `typescript-eslint` from 8.53.1 to 8.54.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.54.0/packages/typescript-eslint) Updates `@types/node` from 25.0.10 to 25.1.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `tsdown` from 0.19.0 to 0.20.1 - [Release notes](https://github.com/rolldown/tsdown/releases) - [Commits](https://github.com/rolldown/tsdown/compare/v0.19.0...v0.20.1) --- updated-dependencies: - dependency-name: globals dependency-version: 17.2.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-deps-updates-main - dependency-name: prettier dependency-version: 3.8.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-deps-updates-main - dependency-name: typescript-eslint dependency-version: 8.54.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-deps-updates-main - dependency-name: "@types/node" dependency-version: 25.1.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-deps-updates-main - dependency-name: tsdown dependency-version: 0.20.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-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.20.1",
|
|
"tsx": "^4.20.5",
|
|
"typescript": "^5.9.2",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|