package.json 913 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@deepseek-ai/dsh-skill-badge",
  3. "description": "Bundled dsh badge skill provider for DeepSeek Harness",
  4. "version": "0.1.5-rc.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/skill/skill-badge"
  12. },
  13. "type": "module",
  14. "main": "lib/index.js",
  15. "types": "lib/types/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/types/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./package.json": "./package.json"
  22. },
  23. "files": [
  24. "lib/index.js",
  25. "assets",
  26. "lib/types/**/*.d.ts"
  27. ],
  28. "license": "MIT",
  29. "peerDependencies": {
  30. "@deepseek-ai/dsh-skill": "workspace:^",
  31. "@deepseek-ai/cordis": "workspace:^"
  32. },
  33. "devDependencies": {
  34. "@deepseek-ai/dsh-skill": "workspace:^",
  35. "@deepseek-ai/cordis": "workspace:^"
  36. }
  37. }