@adhdev/core
v0.1.2
Published
Shared business logic for ADHDev CLI, Electron, and Web
Downloads
329
Maintainers
Readme
@adhdev/core
Shared business logic for the ADHDev platform — IDE detection, authentication, and type definitions used across CLI, Web, and Electron clients.
Installation
npm install @adhdev/coreExports
| Path | Description |
|------|-------------|
| @adhdev/core | Main entry (re-exports all) |
| @adhdev/core/detector | IDE detection (VS Code, Cursor, Antigravity) |
| @adhdev/core/types | TypeScript type definitions |
| @adhdev/core/auth-client | OAuth client helpers |
| @adhdev/core/compat | Cross-platform compatibility utilities |
Usage
import { detectIDEs } from '@adhdev/core/detector';
const ides = await detectIDEs();
console.log(ides); // [{ type: 'cursor', name: 'Cursor', path: '...' }]License
MIT
