package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@polkawallet/js-api",
  3. "version": "0.3.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": "^6.0.5"
  28. },
  29. "dependencies": {
  30. "@polkadot/api": "^6.0.5",
  31. "@polkadot/extension-dapp": "^0.39.3",
  32. "@polkadot/ui-shared": "0.85.4",
  33. "@walletconnect/client": "2.0.0-alpha.26",
  34. "bn.js": "^5.1.2",
  35. "oo7-substrate": "^0.8.0",
  36. "process": "^0.11.10",
  37. "secp256k1": "^3.8.0",
  38. "typescript": "^4.3.5"
  39. },
  40. "devDependencies": {
  41. "@babel/core": "^7.14.8",
  42. "@babel/plugin-transform-runtime": "^7.14.5",
  43. "@babel/preset-env": "^7.14.8",
  44. "@babel/preset-typescript": "^7.14.5",
  45. "@webpack-cli/info": "^0.2.0",
  46. "@webpack-cli/init": "^0.3.0",
  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. "stream-browserify": "^3.0.0",
  54. "webpack": "^5.42.0",
  55. "webpack-cli": "^4.7.2"
  56. }
  57. }