2
0

package.json 845 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@roo-code/types",
  3. "version": "0.0.0",
  4. "type": "module",
  5. "main": "./dist/index.cjs",
  6. "exports": {
  7. ".": {
  8. "types": "./src/index.ts",
  9. "import": "./src/index.ts",
  10. "require": {
  11. "types": "./dist/index.d.cts",
  12. "default": "./dist/index.cjs"
  13. }
  14. }
  15. },
  16. "scripts": {
  17. "lint": "eslint src --ext=ts --max-warnings=0",
  18. "check-types": "tsc --noEmit",
  19. "test": "vitest run",
  20. "build": "tsup",
  21. "npm:publish:test": "tsup --outDir npm/dist && cd npm && npm publish --dry-run",
  22. "npm:publish": "tsup --outDir npm/dist && cd npm && npm publish",
  23. "clean": "rimraf dist npm/dist .turbo"
  24. },
  25. "dependencies": {
  26. "zod": "^3.25.61"
  27. },
  28. "devDependencies": {
  29. "@roo-code/config-eslint": "workspace:^",
  30. "@roo-code/config-typescript": "workspace:^",
  31. "@types/node": "20.x",
  32. "tsup": "^8.3.5",
  33. "vitest": "^3.2.3"
  34. }
  35. }