text-fragments-ts/ package.json
31 lines
720 B

  1. {
  2. "name": "text-fragments-ts",
  3. "version": "0.1.0",
  4. "description": "The WICG’s Text Fragments draft specification, implemented in TypeScript",
  5. "author": "Gerben",
  6. "homepage": "https://code.treora.com/gerben/text-fragments-ts",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://code.treora.com/gerben/text-fragments-ts"
  10. },
  11. "scripts": {
  12. "build": "tsc",
  13. "prepublish": "npm run build",
  14. "publish": "publish-to-git"
  15. },
  16. "type": "module",
  17. "exports": {
  18. ".": "./lib/index.js",
  19. "./polyfill": "./lib/polyfill.js"
  20. },
  21. "module": "lib/index.js",
  22. "files": [
  23. "lib"
  24. ],
  25. "dependencies": {},
  26. "devDependencies": {
  27. "publish-to-git": "^1.1.9",
  28. "typescript": "^3.9.7"
  29. }
  30. }