mirror of
https://github.com/TabbyML/tabby
synced 2024-11-22 17:41:54 +00:00
08a326c347
* refactor(vscode): disable noUnusedLocals and update build script. Extract InlineEditController * refactor(inline-edit): reorganize InlineChatEdit * restructure tsconfig.json * build(clients/tabby-agent): update watch script to modify dist/protocol.d.ts on success, to help trigger watch mode of vscode extension * streaming at line break * Let CodeLensProvider using footer's markers * turn off background color of header / footer to avoid flickering * support cancel from codelens * update * update * update * update * [autofix.ci] apply automated fixes * fix * chore(agent): when apply inline edit, apply the first edit as soon as possible so codelens can display immediately * add highlight for in progress edit * update * [autofix.ci] apply automated fixes * update --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
99 lines
2.8 KiB
JSON
Vendored
99 lines
2.8 KiB
JSON
Vendored
{
|
|
"name": "tabby-agent",
|
|
"version": "1.8.0-dev",
|
|
"description": "Generic client agent for Tabby AI coding assistant IDE extensions.",
|
|
"homepage": "https://tabby.tabbyml.com/",
|
|
"repository": "https://github.com/TabbyML/tabby",
|
|
"bugs": "https://github.com/TabbyML/tabby/issues",
|
|
"keywords": [
|
|
"tabby",
|
|
"ai",
|
|
"autocomplete",
|
|
"code completion",
|
|
"languageserver"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"files": [
|
|
"./dist/**"
|
|
],
|
|
"bin": {
|
|
"tabby-agent": "./dist/node/index.js"
|
|
},
|
|
"main": "./dist/protocol.js",
|
|
"types": "./dist/protocol.d.ts",
|
|
"scripts": {
|
|
"build": "tsup --minify",
|
|
"watch": "tsup --watch --onSuccess \"echo '' >> dist/protocol.d.ts\"",
|
|
"vscode:dev": "pnpm watch",
|
|
"openapi-codegen": "openapi-typescript ./openapi/tabby.json -o ./src/types/tabbyApi.d.ts",
|
|
"test": "mocha",
|
|
"lint": "eslint --ext .ts ./src && prettier --check .",
|
|
"lint:fix": "eslint --fix --ext .ts ./src && prettier --write ."
|
|
},
|
|
"devDependencies": {
|
|
"@orama/orama": "^2.0.18",
|
|
"@types/chai": "^4.3.5",
|
|
"@types/dedent": "^0.7.2",
|
|
"@types/deep-equal": "^1.0.4",
|
|
"@types/diff": "^5.2.1",
|
|
"@types/fast-levenshtein": "^0.0.4",
|
|
"@types/fs-extra": "^11.0.1",
|
|
"@types/glob": "^7.2.0",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "18.x",
|
|
"@types/object-hash": "^3.0.0",
|
|
"@types/readable-stream": "^4.0.14",
|
|
"@types/semver": "^7.5.8",
|
|
"@types/uuid": "^9.0.0",
|
|
"@types/win-ca": "^3.5.4",
|
|
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
|
"@typescript-eslint/parser": "^6.13.1",
|
|
"chai": "^4.3.7",
|
|
"chokidar": "^3.5.3",
|
|
"crypto-random-string": "^5.0.0",
|
|
"dedent": "^0.7.0",
|
|
"deep-equal": "^2.2.1",
|
|
"deepmerge-ts": "^5.1.0",
|
|
"diff": "^5.2.0",
|
|
"dot-prop": "^8.0.2",
|
|
"esbuild": "^0.19.12",
|
|
"esbuild-plugin-polyfill-node": "^0.3.0",
|
|
"eslint": "^8.55.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eventsource-parser": "^1.1.2",
|
|
"fast-levenshtein": "^3.0.0",
|
|
"file-stream-rotator": "^1.0.0",
|
|
"fs-extra": "^11.1.1",
|
|
"glob": "^7.2.0",
|
|
"jwt-decode": "^3.1.2",
|
|
"lru-cache": "^9.1.1",
|
|
"mac-ca": "^2.0.3",
|
|
"mocha": "^10.2.0",
|
|
"object-hash": "^3.0.0",
|
|
"openapi-fetch": "^0.7.6",
|
|
"pino": "^8.14.1",
|
|
"prettier": "^3.0.0",
|
|
"readable-from-web": "^1.0.0",
|
|
"readable-stream": "^4.5.2",
|
|
"semver": "^7.6.0",
|
|
"stats-logscale": "^1.0.9",
|
|
"tabby-openapi": "workspace:*",
|
|
"toml": "^3.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"tsc-watch": "^6.2.0",
|
|
"tsup": "^8.0.2",
|
|
"typescript": "^5.3.2",
|
|
"undici": "^6.19.2",
|
|
"uri-js": "^4.4.1",
|
|
"uuid": "^9.0.0",
|
|
"vscode-languageserver": "^9.0.1",
|
|
"vscode-languageserver-protocol": "^3.17.5",
|
|
"vscode-languageserver-textdocument": "^1.0.11",
|
|
"web-tree-sitter": "^0.20.8",
|
|
"win-ca": "^3.5.1"
|
|
}
|
|
}
|