text-fragments-ts/ package.json
28 lines
620 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. },
  14. "type": "module",
  15. "exports": {
  16. ".": "./lib/index.js",
  17. "./polyfill": "./lib/polyfill.js"
  18. },
  19. "module": "lib/index.js",
  20. "files": [
  21. "lib"
  22. ],
  23. "dependencies": {},
  24. "devDependencies": {
  25. "typescript": "^3.9.7"
  26. }
  27. }