-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
110 lines (110 loc) · 3.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "pelagus-extension",
"displayName": "Pelagus",
"version": "0.0.1",
"description": "Embark on Web3.",
"author": "alan",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.22.3",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@ledgerhq/hw-app-eth": "^6.33.4",
"@ledgerhq/hw-transport-webhid": "^6.27.15",
"@ledgerhq/hw-transport-webusb": "^6.27.15",
"@metamask/browser-passworder": "^4.1.0",
"@plasmohq/messaging": "^0.1.8",
"@plasmohq/persistent": "^0.0.3",
"@plasmohq/redux-persist": "^6.1.0",
"@plasmohq/storage": "^1.6.1",
"@reduxjs/toolkit": "^1.9.5",
"@scure/bip32": "^1.3.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/webextension-polyfill": "^0.10.0",
"assert": "^2.0.0",
"bip39": "^3.0.4",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"crypto-browserify": "^3.12.0",
"csstype": "^3.1.2",
"framer-motion": "^8.5.5",
"hdkey": "^2.1.0",
"lodash": "^4.17.21",
"postcss": "^8.4.24",
"quais": "^0.1.11",
"react": "18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.9.0",
"react-jdenticon": "^1.0.1",
"react-qr-code": "^2.0.11",
"react-redux": "^8.0.7",
"react-simple-maps": "^3.0.0",
"redux-persist-webextension-storage": "^1.0.2",
"secp256k1": "^4.0.3",
"stream-browserify": "^3.0.0",
"url": "^0.11.0",
"webextension-polyfill": "^0.10.0",
"wouter": "^2.11.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@jest/globals": "29.5.0",
"@jest/types": "29.5.0",
"@peculiar/webcrypto": "^1.4.3",
"@plasmohq/prettier-plugin-sort-imports": "3.5.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "14.0.0",
"@types/chrome": "0.0.200",
"@types/jest": "^29.5.2",
"@types/node": "18.11.7",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"babel-jest": "^29.5.0",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-webextension-mock": "3.8.9",
"plasmo": "0.70.1",
"prettier": "2.7.1",
"puppeteer": "^20.5.0",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"typescript": "5.0.4"
},
"manifest": {
"host_permissions": [
"https://*/*",
"http://*/*"
],
"permissions": [
"alarms",
"contextMenus",
"tabs",
"declarativeNetRequest",
"webRequest",
"webRequestBlocking",
"scripting",
"geolocation"
],
"default_locale": "en"
},
"alias": {
"@ledgerhq/devices": "@ledgerhq/devices/lib-es"
}
}