tabby/clients/tabby-agent/package.json

51 lines
1.4 KiB
JSON

{
"name": "tabby-agent",
"version": "0.0.1",
"description": "Generic client agent for Tabby AI coding assistant IDE extensions.",
"repository": "https://github.com/TabbyML/tabby",
"files": [
"dist"
],
"main": "./dist/index.js",
"browser": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"openapi-codegen": "rimraf ./src/generated && openapi --input ../../website/static/openapi.json --output ./src/generated --client axios --name TabbyApi --indent 2",
"dev": "tsup --watch",
"build": "tsup",
"test:watch": "mocha --watch",
"test": "mocha"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.32",
"chai": "^4.3.7",
"dedent": "^0.7.0",
"esbuild-plugin-polyfill-node": "^0.2.0",
"mocha": "^10.2.0",
"openapi-typescript-codegen": "^0.24.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
},
"dependencies": {
"axios": "^1.4.0",
"chokidar": "^3.5.3",
"deep-equal": "^2.2.1",
"deepmerge": "^4.3.1",
"form-data": "^4.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",
"pino": "^8.14.1",
"rotating-file-stream": "^3.1.0",
"toml": "^3.0.0",
"uuid": "^9.0.0"
}
}