package.json 1005 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "locate-character",
  3. "version": "3.0.0",
  4. "description": "Get the line and column number of a specific character in a string",
  5. "type": "module",
  6. "types": "./types/index.d.ts",
  7. "exports": {
  8. "types": "./types/index.d.ts",
  9. "import": "./src/index.js"
  10. },
  11. "scripts": {
  12. "test": "node test/test.js",
  13. "build": "dts-buddy",
  14. "prepublishOnly": "npm test && npm run build"
  15. },
  16. "files": [
  17. "src",
  18. "types",
  19. "README.md"
  20. ],
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://gitlab.com/Rich-Harris/locate-character.git"
  24. },
  25. "keywords": [
  26. "string",
  27. "character",
  28. "locate",
  29. "line",
  30. "column",
  31. "location"
  32. ],
  33. "author": "Rich Harris",
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://gitlab.com/Rich-Harris/locate-character/issues"
  37. },
  38. "homepage": "https://gitlab.com/Rich-Harris/locate-character#README",
  39. "devDependencies": {
  40. "dts-buddy": "^0.1.6",
  41. "typescript": "^5.1.3"
  42. },
  43. "packageManager": "pnpm@8.6.2"
  44. }