53 lines
1.6 KiB
JSON
53 lines
1.6 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",
|
|
"main": "./dist/index.js",
|
|
"browser": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"openapi-codegen": "rimraf ./src/generated && openapi --input ./openapi/tabby.json --output ./src/generated --client axios --name TabbyApi --indent 2",
|
|
"predev": "yarn openapi-codegen",
|
|
"dev": "tsup --watch --no-minify --no-treeshake",
|
|
"prebuild": "yarn openapi-codegen",
|
|
"build": "tsup",
|
|
"test:watch": "env TEST_LOG_DEBUG=1 mocha --watch",
|
|
"test": "mocha",
|
|
"lint": "prettier --write ."
|
|
},
|
|
"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.3.0",
|
|
"mocha": "^10.2.0",
|
|
"openapi-typescript-codegen": "^0.24.0",
|
|
"prettier": "^3.0.0",
|
|
"rimraf": "^5.0.1",
|
|
"ts-node": "^10.9.1",
|
|
"tsup": "^7.1.0",
|
|
"typescript": "^5.0.3"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.4.0",
|
|
"chokidar": "^3.5.3",
|
|
"deep-equal": "^2.2.1",
|
|
"deepmerge": "^4.3.1",
|
|
"fast-levenshtein": "^3.0.0",
|
|
"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"
|
|
}
|
|
}
|