2024-05-06 01:53:05 +00:00
|
|
|
{
|
|
|
|
"name": "tabby-chat-panel",
|
|
|
|
"type": "module",
|
2024-05-15 01:54:44 +00:00
|
|
|
"version": "0.0.0-dev.3",
|
2024-05-06 01:53:05 +00:00
|
|
|
"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": {
|
2024-05-22 07:39:12 +00:00
|
|
|
"build": "unbuild && pnpm build:vscode",
|
2024-05-06 01:53:05 +00:00
|
|
|
"dev": "unbuild --stub",
|
2024-05-22 07:39:12 +00:00
|
|
|
"lint": "eslint .",
|
|
|
|
"lint:fix": "eslint . --fix",
|
2024-05-06 01:53:05 +00:00
|
|
|
"prepack": "nr build",
|
|
|
|
"preview": "node --watch bin/index.js",
|
|
|
|
"release": "bumpp && npm publish",
|
|
|
|
"start": "tsx src/index.ts",
|
2024-05-21 21:43:15 +00:00
|
|
|
"test": "vitest run",
|
|
|
|
"test:watch": "vitest",
|
2024-05-22 07:39:12 +00:00
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
"build:vscode": "esbuild src/iframe.tsx --bundle --minify --outfile=../vscode/chat-panel/index.js --loader:.js=jsx",
|
|
|
|
"dev:vscode": "esbuild src/iframe.tsx --bundle --outfile=../vscode/chat-panel/index.js --loader:.js=jsx --watch"
|
2024-05-06 01:53:05 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-05-15 01:54:44 +00:00
|
|
|
"@quilted/threads": "^2.1.2",
|
2024-05-22 07:39:12 +00:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0"
|
2024-05-06 01:53:05 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@antfu/eslint-config": "^2.16.0",
|
|
|
|
"@antfu/ni": "^0.21.12",
|
|
|
|
"@types/node": "^20.12.7",
|
2024-05-21 21:43:15 +00:00
|
|
|
"@types/react": "18.2.23",
|
2024-05-22 07:39:12 +00:00
|
|
|
"@types/react-dom": "18.2.23",
|
2024-05-06 01:53:05 +00:00
|
|
|
"bumpp": "^9.4.0",
|
2024-05-22 07:39:12 +00:00
|
|
|
"esbuild": "^0.21.3",
|
2024-05-06 01:53:05 +00:00
|
|
|
"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",
|
|
|
|
"vite": "^5.2.10",
|
|
|
|
"vitest": "^1.5.2"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*": "eslint --fix"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
}
|
|
|
|
}
|