Files
opencode/packages/script/package.json
T
Artur Do Lago 0734051b08 style: format codebase with prettier and enforce lint
- Run prettier --write across all 17 packages
- Update lint scripts to use prettier --check
- Exclude dist/build directories from lint (app, sdk, console/app)
- Add missing scripts to console packages (typecheck, lint, test)
- All 55 turbo check tasks now pass

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 13:07:40 +01:00

17 lines
384 B
JSON

{
"$schema": "https://json.schemastore.org/package",
"name": "@opencode-ai/script",
"license": "MIT",
"scripts": {
"typecheck": "echo 'Script package - no typecheck' && exit 0",
"lint": "prettier --check .",
"test": "echo 'No tests configured' && exit 0"
},
"devDependencies": {
"@types/bun": "catalog:"
},
"exports": {
".": "./src/index.ts"
}
}