tabby/clients/tabby-agent/package.json

53 lines
1.5 KiB
JSON

{
"name": "tabby-agent",
"version": "0.3.0",
"description": "Generic client agent for Tabby AI coding assistant IDE extensions.",
"repository": "https://github.com/TabbyML/tabby",
"main": "./dist/index.js",
"browser": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"openapi-codegen": "openapi-typescript ./openapi/tabby.json -o ./src/types/tabbyApi.d.ts",
"dev": "tsup --watch --no-minify --no-treeshake",
"build": "tsup",
"test": "mocha",
"test:watch": "env TEST_LOG_DEBUG=1 mocha --watch",
"lint": "prettier --write .",
"lint:check": "prettier --check ."
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.12.0",
"chai": "^4.3.7",
"dedent": "^0.7.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"mocha": "^10.2.0",
"openapi-typescript": "^6.6.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^5.0.3"
},
"dependencies": {
"chokidar": "^3.5.3",
"deep-equal": "^2.2.1",
"deepmerge-ts": "^5.1.0",
"dot-prop": "^8.0.2",
"fast-levenshtein": "^3.0.0",
"fs-extra": "^11.1.1",
"jwt-decode": "^3.1.2",
"lru-cache": "^9.1.1",
"object-hash": "^3.0.0",
"object-sizeof": "^2.6.1",
"openapi-fetch": "^0.7.6",
"pino": "^8.14.1",
"rotating-file-stream": "^3.1.0",
"stats-logscale": "^1.0.7",
"toml": "^3.0.0",
"uuid": "^9.0.0"
}
}