Some checks failed
CI — Chrome / Chrome — typecheck, test, build (pull_request) Has been cancelled
CI — CLI / CLI — typecheck, build, smoke (pull_request) Has been cancelled
CI — Website / Website — typecheck, build (pull_request) Has been cancelled
CI — VS Code / VS Code — typecheck, build (pull_request) Has been cancelled
- Implemented SiteHeader and SiteFooter components for consistent navigation and footer across the website. - Created CommunityPage and ContributePage to provide information on community involvement and contribution guidelines. - Developed DocsPage to serve as the main documentation hub, detailing features and installation instructions. - Added HomePage to introduce LexAI and its functionalities, highlighting key features and privacy aspects. - Established links.ts for centralized management of external links used throughout the website. - Configured main.tsx for application entry point with React Router for navigation. - Introduced styles.css for consistent styling across the website. - Set up TypeScript configuration files for improved type checking and development experience. - Configured Vite for building and serving the website.
41 lines
2.0 KiB
JSON
41 lines
2.0 KiB
JSON
{
|
|
"name": "lexai",
|
|
"version": "1.1.0",
|
|
"private": true,
|
|
"description": "LexAI monorepo — BYO-LLM writing assistant for Chrome, VS Code, and CLI Prompt Builder",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"packageManager": "npm@11.13.0",
|
|
"scripts": {
|
|
"chrome:install": "npm install --prefix packages/chrome",
|
|
"chrome:dev": "npm run dev --prefix packages/chrome",
|
|
"chrome:build": "npm run build --prefix packages/chrome",
|
|
"chrome:zip": "npm run zip --prefix packages/chrome",
|
|
"chrome:typecheck": "npm run typecheck --prefix packages/chrome",
|
|
"chrome:test": "npm test --prefix packages/chrome -- --run",
|
|
"dev": "npm run chrome:dev",
|
|
"build": "npm run chrome:build",
|
|
"zip": "npm run chrome:zip",
|
|
"typecheck": "npm run chrome:typecheck",
|
|
"test": "npm run chrome:test",
|
|
"test:e2e": "npm run test:e2e --prefix packages/chrome",
|
|
"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",
|
|
"cli:install": "npm install --prefix packages/cli",
|
|
"cli:build": "npm run compile --prefix packages/cli",
|
|
"cli:typecheck": "npm run typecheck --prefix packages/cli",
|
|
"website:install": "npm install --prefix packages/website",
|
|
"website:dev": "npm run dev --prefix packages/website",
|
|
"website:build": "npm run build --prefix packages/website",
|
|
"website:preview": "npm run preview --prefix packages/website",
|
|
"website:typecheck": "npm run typecheck --prefix packages/website",
|
|
"install:all": "npm run chrome:install && npm run vscode:install && npm run cli:install && npm run website:install",
|
|
"typecheck:all": "npm run chrome:typecheck && npm run vscode:typecheck && npm run cli:typecheck && npm run website:typecheck",
|
|
"build:all": "npm run chrome:build && npm run vscode:build && npm run cli:build && npm run website:build"
|
|
}
|
|
}
|