tabby/clients/tabby-chat-panel/package.json
Wang Zixiao 571b75c3d3
feat(vscode): add chat panel (#2234)
* wip

* update

* clean

* update

* theme stuff

* theme update

* fix chat background

* filter out workspace path and align indent

* update

* chat component style

* chat panel text size

* update navigate

* update

* navigate url

* [autofix.ci] apply automated fixes

* update chat style

* fixme comment for tmp solution

* handle pending

* update theme sync

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2024-05-27 11:25:04 +08:00

72 lines
1.5 KiB
JSON
Vendored

{
"name": "tabby-chat-panel",
"type": "module",
"version": "0.0.0-dev.3",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.mjs",
"require": "./dist/react.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "nr build",
"preview": "node --watch bin/index.js",
"release": "bumpp && npm publish",
"start": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@quilted/threads": "^2.2.0",
"react": "18.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.0",
"@antfu/ni": "^0.21.12",
"@types/node": "^20.12.7",
"@types/react": "18.2.23",
"bumpp": "^9.4.0",
"eslint": "^9.1.1",
"eslint-formatter-mo": "^1.2.0",
"lint-staged": "^15.2.2",
"rimraf": "^5.0.5",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^1.5.2"
},
"lint-staged": {
"*": "eslint --fix"
},
"publishConfig": {
"access": "public"
}
}