package.json•1.32 kB
{
"name": "@agiflowai/coding-agent-bridge",
"description": "Bridge library for connecting coding agents with various development tools and services",
"version": "1.0.2",
"license": "AGPL-3.0",
"author": "AgiflowIO",
"repository": {
"type": "git",
"url": "https://github.com/AgiFlow/aicode-toolkit.git",
"directory": "packages/coding-agent-bridge"
},
"homepage": "https://github.com/AgiFlow/aicode-toolkit#readme",
"bugs": {
"url": "https://github.com/AgiFlow/aicode-toolkit/issues"
},
"keywords": [
"typescript",
"library"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsdown",
"test": "vitest --run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"execa": "^9.5.2",
"fs-extra": "11.3.2",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/fs-extra": "^11.0.4",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.0.0",
"tsdown": "^0.15.6",
"typescript": "5.9.3",
"vitest": "^3.0.0"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
}
}