-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.3 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.3 KB
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
{
"name": "gorbag-wallet",
"displayName": "Gorbag Wallet",
"version": "0.0.1",
"description": "Non-custodial Powerful Gorbagana-Native Wallet",
"author": "David Nzube",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"postinstall": "patch-package",
"firefox-build": "plasmo build --target=firefox-mv2",
"chrome-build": "plasmo build --target=chrome-mv3",
"xpi-build": "cd build/firefox-mv2-prod && web-ext build",
"xpi-sign": ". ./.env && echo 'remember to add the $FIREFOX_API_KEY and $FIREFOX_API_SECRET envs' && cd build/firefox-mv2-prod && web-ext sign --api-key=$FIREFOX_API_KEY --api-secret=$FIREFOX_API_SECRET --channel=unlisted",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@jup-ag/api": "^6.0.45",
"@jup-ag/core": "4.0.0-beta.21",
"@plasmohq/storage": "^1.15.0",
"@radix-ui/react-accordion": "1.2.2",
"@radix-ui/react-alert-dialog": "1.1.4",
"@radix-ui/react-aspect-ratio": "1.1.1",
"@radix-ui/react-avatar": "1.1.2",
"@radix-ui/react-checkbox": "1.1.3",
"@radix-ui/react-collapsible": "1.1.2",
"@radix-ui/react-context-menu": "2.2.4",
"@radix-ui/react-dialog": "1.1.4",
"@radix-ui/react-dropdown-menu": "2.1.4",
"@radix-ui/react-hover-card": "1.1.4",
"@radix-ui/react-label": "2.1.1",
"@radix-ui/react-menubar": "1.1.4",
"@radix-ui/react-navigation-menu": "1.2.3",
"@radix-ui/react-popover": "1.1.4",
"@radix-ui/react-progress": "1.1.1",
"@radix-ui/react-radio-group": "1.2.2",
"@radix-ui/react-scroll-area": "1.2.2",
"@radix-ui/react-select": "2.1.4",
"@radix-ui/react-separator": "1.1.1",
"@radix-ui/react-slider": "1.2.2",
"@radix-ui/react-slot": "1.1.1",
"@radix-ui/react-switch": "1.1.2",
"@radix-ui/react-tabs": "1.1.2",
"@radix-ui/react-toast": "1.2.4",
"@radix-ui/react-toggle": "1.1.1",
"@radix-ui/react-toggle-group": "1.1.1",
"@radix-ui/react-tooltip": "1.1.6",
"@solana/web3.js": "^1.98.4",
"bip39": "^3.1.0",
"bs58": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ed25519-hd-key": "^1.3.0",
"framer-motion": "^11.0.0",
"is-nan": "^1.3.2",
"lucide-react": "^0.552.0",
"plasmo": "0.90.5",
"qrcode": "^1.5.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "3.4.1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.1.27",
"@types/jest": "^30.0.0",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"patch-package": "^8.0.1",
"postcss": "8.4.33",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.3.3"
},
"manifest": {
"host_permissions": [
"https://*/*",
"http://localhost/*"
],
"browser_specific_settings": {
"gecko": {
"id": "gorbag@aetherlabs.io"
}
}
}
}