package.json 434 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/shell-scan",
  4. "version": "0.0.0",
  5. "private": true,
  6. "type": "module",
  7. "exports": {
  8. ".": "./src/index.ts"
  9. },
  10. "scripts": {
  11. "test": "bun test --only-failures",
  12. "typecheck": "tsgo --noEmit"
  13. },
  14. "devDependencies": {
  15. "@tsconfig/bun": "catalog:",
  16. "@types/bun": "catalog:",
  17. "@typescript/native-preview": "catalog:"
  18. }
  19. }