tabby/clients/tabby-agent/package.json

21 lines
642 B
JSON
Raw Normal View History

{
"name": "tabby-agent",
"version": "0.0.1",
"description": "Generic client agent for Tabby AI coding assistant IDE extensions.",
"repository": "https://github.com/TabbyML/tabby",
"scripts": {
"openapi-codegen": "openapi --input ../../docs/openapi.json --output ./src/generated --client axios --name Tabby --indent 2",
"dev": "webpack --watch",
"build": "webpack --mode=production"
},
"devDependencies": {
"axios": "^1.3.4",
"form-data": "^4.0.0",
"openapi-typescript-codegen": "^0.24.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.3",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1"
}
}