TypeScript types and utility functions for handling Web Annotations.

web-annotation-utils/ package.json
35 lines
848 B

  1. {
  2. "name": "web-annotation-utils",
  3. "version": "1.0.0",
  4. "description": "TypeScript types and utility functions for handling Web Annotations",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "type": "module",
  8. "exports": {
  9. ".": "./lib/index.js"
  10. },
  11. "files": ["lib"],
  12. "scripts": {
  13. "prepublish": "tsc",
  14. "publish": "publish-to-git --force && publish-to-git --force --tag latest",
  15. "doc": "tsdoc --src=* --dest=Readme.md"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://code.treora.com/gerben/web-annotation-utils"
  20. },
  21. "keywords": [
  22. "web-annotation"
  23. ],
  24. "author": "Gerben",
  25. "license": "Unlicense",
  26. "dependencies": {
  27. "@apache-annotator/selector": "^0.3.0-dev.23",
  28. "typescript": "^4.8.4"
  29. },
  30. "devDependencies": {
  31. "publish-to-git": "^1.1.7",
  32. "tsdoc-markdown": "^0.0.1"
  33. }
  34. }