package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@metamask/detect-provider",
  3. "version": "2.0.0",
  4. "description": "A tiny utility for detecting the MetaMask Ethereum provider, or any EIP 1193-compliant provider.",
  5. "main": "dist/index.js",
  6. "typings": "dist/index.d.ts",
  7. "files": [
  8. "dist/"
  9. ],
  10. "engines": {
  11. "node": ">=14.0.0"
  12. },
  13. "scripts": {
  14. "pretest": "yarn build",
  15. "test": "node test/*",
  16. "lint": "eslint . --ext ts,js,json",
  17. "lint:fix": "yarn lint --fix",
  18. "build": "./build.sh",
  19. "setup": "yarn install && yarn allow-scripts"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/MetaMask/detect-provider.git"
  24. },
  25. "author": "Erik Marks <rekmarks@protonmail.com>",
  26. "license": "ISC",
  27. "private": false,
  28. "publishConfig": {
  29. "access": "public"
  30. },
  31. "keywords": [
  32. "ethereum",
  33. "provider",
  34. "metamask",
  35. "web3"
  36. ],
  37. "bugs": {
  38. "url": "https://github.com/MetaMask/detect-provider/issues"
  39. },
  40. "homepage": "https://github.com/MetaMask/detect-provider#readme",
  41. "devDependencies": {
  42. "@lavamoat/allow-scripts": "^2.0.3",
  43. "@metamask/auto-changelog": "^2.6.0",
  44. "@metamask/eslint-config": "^4.1.0",
  45. "@typescript-eslint/eslint-plugin": "^4.5.0",
  46. "@typescript-eslint/parser": "^4.5.0",
  47. "browserify": "^16.5.1",
  48. "eslint": "^7.7.0",
  49. "eslint-plugin-import": "^2.22.0",
  50. "eslint-plugin-json": "^2.1.1",
  51. "eslint-plugin-node": "^11.1.0",
  52. "sinon": "^9.0.2",
  53. "tape": "^5.0.0",
  54. "tinyify": "^3.0.0",
  55. "typescript": "^4.0.3"
  56. },
  57. "dependencies": {},
  58. "lavamoat": {
  59. "allowScripts": {
  60. "@lavamoat/preinstall-always-fail": false
  61. }
  62. }
  63. }