2023-04-08 05:20:27 +00:00
|
|
|
{
|
2023-05-22 16:34:56 +00:00
|
|
|
"name": "tabby-agent",
|
2023-04-08 05:20:27 +00:00
|
|
|
"version": "0.0.1",
|
2023-05-22 16:34:56 +00:00
|
|
|
"description": "Generic client agent for Tabby AI coding assistant IDE extensions.",
|
|
|
|
|
"repository": "https://github.com/TabbyML/tabby",
|
2023-05-24 16:21:38 +00:00
|
|
|
"main": "./dist/index.js",
|
2023-06-06 14:25:31 +00:00
|
|
|
"browser": "./dist/index.mjs",
|
2023-05-24 16:21:38 +00:00
|
|
|
"types": "./dist/index.d.ts",
|
2023-04-08 05:20:27 +00:00
|
|
|
"scripts": {
|
2023-07-11 06:02:58 +00:00
|
|
|
"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",
|
2023-06-22 06:22:35 +00:00
|
|
|
"build": "tsup",
|
2023-07-13 08:31:20 +00:00
|
|
|
"test:watch": "env TEST_LOG_DEBUG=1 mocha --watch",
|
|
|
|
|
"test": "mocha",
|
|
|
|
|
"lint": "prettier --write ."
|
2023-04-08 05:20:27 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-06-22 06:22:35 +00:00
|
|
|
"@types/chai": "^4.3.5",
|
2023-06-15 15:53:21 +00:00
|
|
|
"@types/fs-extra": "^11.0.1",
|
2023-06-22 06:22:35 +00:00
|
|
|
"@types/mocha": "^10.0.1",
|
2023-05-24 16:21:38 +00:00
|
|
|
"@types/node": "^16.18.32",
|
2023-06-22 06:22:35 +00:00
|
|
|
"chai": "^4.3.7",
|
|
|
|
|
"dedent": "^0.7.0",
|
2023-07-11 06:02:58 +00:00
|
|
|
"esbuild-plugin-polyfill-node": "^0.3.0",
|
2023-06-22 06:22:35 +00:00
|
|
|
"mocha": "^10.2.0",
|
2023-04-13 13:57:14 +00:00
|
|
|
"openapi-typescript-codegen": "^0.24.0",
|
2023-07-11 06:02:58 +00:00
|
|
|
"prettier": "^3.0.0",
|
2023-05-24 01:50:57 +00:00
|
|
|
"rimraf": "^5.0.1",
|
2023-06-22 06:22:35 +00:00
|
|
|
"ts-node": "^10.9.1",
|
2023-07-11 06:02:58 +00:00
|
|
|
"tsup": "^7.1.0",
|
2023-05-24 16:21:38 +00:00
|
|
|
"typescript": "^5.0.3"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"axios": "^1.4.0",
|
2023-07-03 03:19:09 +00:00
|
|
|
"chokidar": "^3.5.3",
|
2023-06-06 13:29:04 +00:00
|
|
|
"deep-equal": "^2.2.1",
|
2023-08-11 11:39:17 +00:00
|
|
|
"deepmerge-ts": "^5.1.0",
|
|
|
|
|
"dot-prop": "^8.0.2",
|
2023-07-13 08:31:20 +00:00
|
|
|
"fast-levenshtein": "^3.0.0",
|
2023-05-29 02:09:44 +00:00
|
|
|
"form-data": "^4.0.0",
|
2023-06-15 15:53:21 +00:00
|
|
|
"fs-extra": "^11.1.1",
|
2023-06-16 17:50:47 +00:00
|
|
|
"jwt-decode": "^3.1.2",
|
2023-05-29 02:09:44 +00:00
|
|
|
"lru-cache": "^9.1.1",
|
|
|
|
|
"object-hash": "^3.0.0",
|
2023-06-02 03:58:34 +00:00
|
|
|
"object-sizeof": "^2.6.1",
|
2023-06-06 14:25:31 +00:00
|
|
|
"pino": "^8.14.1",
|
|
|
|
|
"rotating-file-stream": "^3.1.0",
|
2023-07-03 03:19:09 +00:00
|
|
|
"toml": "^3.0.0",
|
2023-06-02 03:58:34 +00:00
|
|
|
"uuid": "^9.0.0"
|
2023-04-08 05:20:27 +00:00
|
|
|
}
|
|
|
|
|
}
|