mirror of
https://github.com/trycua/computer.git
synced 2025-12-31 10:29:59 -06:00
- Add `.editorconfig` for editor consistency. - Configure GitHub Actions workflow for linting (`.github/workflows/lint.yml`). - Add pre-commit hooks for automated checks (`.pre-commit-config.yaml`). - Configure Prettier and exclusions (`.prettierrc.yaml`, `.prettierignore`). - Update VS Code extensions to include formatting tools (`.vscode/extensions.json`). - Adjust VS Code settings for auto-formatting (`.vscode/settings.json`).
28 lines
594 B
JSON
28 lines
594 B
JSON
{
|
|
"name": "computer-example-ts",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"start": "tsx src/index.ts",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check ."
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"packageManager": "pnpm@10.12.3",
|
|
"dependencies": {
|
|
"@trycua/computer": "^0.1.3",
|
|
"dotenv": "^16.5.0",
|
|
"openai": "^5.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.15.33",
|
|
"tsx": "^4.20.3",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|