package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@polkawallet/js-api",
  3. "version": "3.2.1",
  4. "main": "index.js",
  5. "license": "Apache-2.0",
  6. "keywords": [
  7. "Polkadot",
  8. "Polkawallet"
  9. ],
  10. "author": "Shawn yang <dhryxy@gmail.com>",
  11. "maintainers": [
  12. "Shawn Yang <dhryxy@gmail.com>"
  13. ],
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/polkawallet-io/js_api.git"
  17. },
  18. "bugs": {
  19. "url": "https://github.com/polkawallet-io/js_api/issues"
  20. },
  21. "scripts": {
  22. "clean": "rm -rf dist/*",
  23. "build": "webpack --mode production",
  24. "build-dev": "webpack --mode development"
  25. },
  26. "resolutions": {
  27. "@polkadot/api": "^8.5.1",
  28. "bn.js": "4.12.0"
  29. },
  30. "dependencies": {
  31. "@polkadot/api": "^8.5.1",
  32. "@polkadot/extension-dapp": "^0.43.2",
  33. "@polkadot/ui-shared": "^2.2.1",
  34. "@walletconnect/sign-client": "2.0.0-beta.100",
  35. "@walletconnect/utils": "2.0.0-beta.100",
  36. "bn.js": "^5.1.2",
  37. "oo7-substrate": "^0.8.0",
  38. "process": "^0.11.10",
  39. "secp256k1": "^3.8.0",
  40. "typescript": "^4.5.5"
  41. },
  42. "devDependencies": {
  43. "@babel/core": "^7.14.8",
  44. "@babel/plugin-transform-runtime": "^7.14.5",
  45. "@babel/preset-env": "^7.14.8",
  46. "@babel/preset-typescript": "^7.14.5",
  47. "babel-loader": "^8.0.6",
  48. "crypto-browserify": "^3.12.0",
  49. "eslint": "^6.8.0",
  50. "eslint-config-prettier": "^6.9.0",
  51. "eslint-plugin-prettier": "^3.1.2",
  52. "prettier": "^1.19.1",
  53. "source-map-loader": "^3.0.1",
  54. "stream-browserify": "^3.0.0",
  55. "webpack": "^5.65.0",
  56. "webpack-cli": "^4.9.2"
  57. }
  58. }