{ "name": "connector", "version": "0.0.1", "license": "MPL-2.0", "private": true, "repository": { "type": "git", "url": "https://github.com/status-im/status-web.git", "directory": "apps/connector" }, "scripts": { "dev:chrome": "plasmo dev --target=chrome-mv3", "dev:safari": "plasmo dev --target=safari-mv3", "dev:firefox": "plasmo dev --target=firefox-mv3", "build:chrome": "plasmo build --target=chrome-mv3", "build:firefox": "plasmo build --target=firefox-mv3 --zip", "lint": "eslint ./src", "format": "prettier --write .", "package": "plasmo package", "clean": "rimraf apps build .plasmo node_modules" }, "dependencies": { "@plasmohq/messaging": "^0.6.2", "@plasmohq/storage": "^1.11.0", "@radix-ui/react-dropdown-menu": "^2.1.1", "@radix-ui/react-switch": "^1.1.0", "@status-im/colors": "^0.4.0", "cva": "^1.0.0-beta.1", "ethers": "^6.13.0", "plasmo": "0.88.0", "react": "18.2.0", "react-dom": "18.2.0", "ts-pattern": "^5.2.0", "zod": "^3.23.8" }, "devDependencies": { "@ianvs/prettier-plugin-sort-imports": "4.1.1", "@parcel/bundler-experimental": "^2.7.0", "@status-im/eslint-config": "^0.3.0", "@tailwindcss/typography": "^0.5.13", "@types/chrome": "0.0.258", "@types/node": "20.11.5", "@types/react": "18.2.48", "@types/react-dom": "18.2.18", "autoprefixer": "^10.4.19", "husky": "^8.0.3", "lint-staged": "^13.2.0", "postcss": "^8.4.38", "prettier": "3.2.4", "prettier-plugin-tailwindcss": "^0.6.1", "rimraf": "^4.4.1", "tailwind-merge": "^2.3.0", "tailwind-scrollbar-utilities": "^0.2.0", "tailwindcss": "^3.4.3", "tailwindcss-animate": "^1.0.7", "typescript": "5.3.3" }, "manifest": { "manifest_version": 3, "name": "A wallet connector by Status BETA", "description": "THIS EXTENSION IS FOR BETA TESTING. Status Desktop Wallet extended to decentralised applications in your browser.", "host_permissions": [ "https://*/*", "https://chromewebstore.google.com/*" ], "permissions": [ "storage" ], "browser_specific_settings": { "gecko": { "id": "no-reply@status.im" } } }, "lint-staged": { "*.{ts,tsx,js,jsx,mjs}": [ "eslint", "prettier --write" ], "*.{yml,yaml,json}": [ "prettier --write" ] } }