mirror of
https://github.com/getwax/bls-wallet.git
synced 2026-01-09 13:58:03 -05:00
126 lines
4.4 KiB
JSON
126 lines
4.4 KiB
JSON
{
|
|
"name": "bls-wallet-extension",
|
|
"version": "0.1.0",
|
|
"description": "Web extension for managing a BLS wallet",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"repository": "https://github.com/jzaki/bls-wallet-extension.git",
|
|
"author": {
|
|
"name": "Andrew Morris",
|
|
"email": "voltrevo@gmail.com",
|
|
"url": "https://blswallet.org"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"yarn": ">= 1.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch",
|
|
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch",
|
|
"dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera webpack --watch",
|
|
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack",
|
|
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack",
|
|
"build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera webpack",
|
|
"build": "yarn run build:chrome && yarn run build:firefox && yarn run build:opera",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"lint:fix": "eslint . --ext .ts,.tsx --fix"
|
|
},
|
|
"resolutions": {
|
|
"ethers": "5.5.4"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.16.3",
|
|
"@ethereumjs/tx": "^3.5.1",
|
|
"@toruslabs/openlogin-jrpc": "^1.7.2",
|
|
"advanced-css-reset": "^1.2.2",
|
|
"async-mutex": "^0.3.2",
|
|
"axios": "^0.25.0",
|
|
"bls-wallet-clients": "0.6.0",
|
|
"dotenv-webpack": "^7.0.3",
|
|
"emoji-log": "^1.0.2",
|
|
"end-of-stream": "^1.4.4",
|
|
"eth-query": "^2.1.2",
|
|
"eth-rpc-errors": "^4.0.3",
|
|
"ethers": "5.5.4",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"fp-ts": "^2.12.1",
|
|
"io-ts": "^2.2.16",
|
|
"is-stream": "^3.0.0",
|
|
"lodash-es": "^4.17.21",
|
|
"phosphor-react": "^1.4.0",
|
|
"pump": "^3.0.0",
|
|
"react": "^17.0.2",
|
|
"react-blockies": "^1.4.1",
|
|
"react-dom": "^17.0.2",
|
|
"react-router-dom": "^6.2.1",
|
|
"react-table": "^7.7.0",
|
|
"readable-stream": "^3.6.0",
|
|
"sass": "^1.44.0",
|
|
"typed-emitter": "^1.4.0",
|
|
"typescript": "^4.5.3",
|
|
"webext-base-css": "^1.3.2",
|
|
"webextension-polyfill": "^0.8.0",
|
|
"zxcvbn": "^4.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@abhijithvijayan/eslint-config": "^2.6.3",
|
|
"@abhijithvijayan/eslint-config-airbnb": "^1.0.2",
|
|
"@abhijithvijayan/tsconfig": "^1.3.0",
|
|
"@babel/core": "^7.16.0",
|
|
"@babel/eslint-parser": "^7.16.3",
|
|
"@babel/plugin-proposal-class-properties": "^7.16.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
|
|
"@babel/plugin-transform-destructuring": "^7.16.0",
|
|
"@babel/plugin-transform-runtime": "^7.16.4",
|
|
"@babel/preset-env": "^7.16.4",
|
|
"@babel/preset-react": "^7.16.0",
|
|
"@babel/preset-typescript": "^7.16.0",
|
|
"@types/axios": "^0.14.0",
|
|
"@types/end-of-stream": "^1.4.1",
|
|
"@types/lodash-es": "^4.17.5",
|
|
"@types/pump": "^1.1.1",
|
|
"@types/react": "^17.0.37",
|
|
"@types/react-blockies": "^1.4.1",
|
|
"@types/react-dom": "^17.0.11",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"@types/react-table": "^7.7.9",
|
|
"@types/readable-stream": "^2.3.12",
|
|
"@types/webextension-polyfill": "^0.8.2",
|
|
"@types/webpack": "^4.41.29",
|
|
"@types/zxcvbn": "^4.4.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
"@typescript-eslint/parser": "^5.6.0",
|
|
"autoprefixer": "^10.4.2",
|
|
"babel-loader": "^8.2.3",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"copy-webpack-plugin": "^6.4.1",
|
|
"cross-env": "^7.0.3",
|
|
"css-loader": "^5.2.5",
|
|
"eslint": "^7.27.0",
|
|
"eslint-config-prettier": "^6.15.0",
|
|
"eslint-plugin-import": "^2.23.3",
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"eslint-plugin-react": "^7.23.2",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"filemanager-webpack-plugin": "^3.1.1",
|
|
"fork-ts-checker-webpack-plugin": "^6.5.0",
|
|
"html-webpack-plugin": "^4.5.2",
|
|
"mini-css-extract-plugin": "^1.6.0",
|
|
"optimize-css-assets-webpack-plugin": "^5.0.6",
|
|
"postcss": "^8.4.5",
|
|
"postcss-loader": "^4.3.0",
|
|
"prettier": "^2.5.1",
|
|
"resolve-url-loader": "^3.1.3",
|
|
"sass-loader": "^10.2.0",
|
|
"tailwindcss": "^3.0.13",
|
|
"terser-webpack-plugin": "^4.2.3",
|
|
"webpack": "^4.46.0",
|
|
"webpack-cli": "^4.9.1",
|
|
"webpack-extension-reloader": "^1.1.4",
|
|
"wext-manifest-loader": "^2.3.0",
|
|
"wext-manifest-webpack-plugin": "^1.2.1"
|
|
}
|
|
}
|