Some checks failed
CI — Test & Build / Test & Build (push) Has been cancelled
- Implemented a status bar item for LexAI with dynamic status updates (ready, processing, notReady). - Created a suggestion panel for displaying and interacting with AI-generated suggestions. - Added functionality for accepting, regenerating, and discarding suggestions within the suggestion zone. - Introduced configuration options for writing style, prompt patterns, personas, and formats. - Integrated progress indicators for long-running tasks and improved user feedback. - Established TypeScript configuration for the vscode package.
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "lexai",
|
|
"version": "1.1.0",
|
|
"description": "A Grammarly-like Chrome Extension powered by your own LLM provider and API key",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"packageManager": "npm@11.13.0",
|
|
"scripts": {
|
|
"dev": "wxt",
|
|
"build": "wxt build",
|
|
"zip": "wxt zip",
|
|
"test": "vitest",
|
|
"test:e2e": "playwright test",
|
|
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
|
|
"postinstall": "wxt prepare",
|
|
"vscode:install": "npm install --prefix packages/vscode",
|
|
"vscode:build": "npm run compile --prefix packages/vscode",
|
|
"vscode:typecheck": "npm run typecheck --prefix packages/vscode",
|
|
"vscode:package": "npm run package --prefix packages/vscode"
|
|
},
|
|
"dependencies": {
|
|
"@wxt-dev/module-react": "^1.1.5",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"tweetnacl": "^1.0.3",
|
|
"wxt": "^0.20.18"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.50.1",
|
|
"@types/chrome": "^0.1.37",
|
|
"@types/react": "^18.3.1",
|
|
"@types/react-dom": "^18.3.1",
|
|
"jsdom": "^28.1.0",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^3.0.7"
|
|
}
|
|
}
|