This repository has been archived by the owner on Feb 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.74 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
{
"name": "Vulticonnect",
"private": true,
"version": "0.1.0",
"description": "VultiConnect is a Chrome extension that integrates Vultisig into web applications, enabling users to securely sign transactions.",
"author": {
"name": "Vultisig",
"email": "info@vultisig.com",
"url": "https://vultisig.com"
},
"type": "module",
"scripts": {
"build:app": "tsc -b && cross-env CHUNK=app vite build",
"build:content": "tsc -b && cross-env CHUNK=content vite build",
"build:relay": "tsc -b && cross-env CHUNK=relay vite build",
"build:manifest": "node manifest.config.js",
"build": "npm-run-all --serial build:app build:content build:relay build:manifest",
"dev": "nodemon --watch src --ext ts,tsx,scss --exec \"npm run build\"",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@keplr-wallet/provider": "^0.12.169",
"7z-wasm": "^1.1.0",
"antd": "^5.22.2",
"axios": "^1.7.7",
"bs58": "^6.0.0",
"ethers": "^6.13.4",
"html2canvas": "^1.4.1",
"i18next": "^24.0.2",
"keymirror": "^0.1.1",
"long": "^5.2.4",
"mipd": "^0.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"react-router-dom": "^7.0.1",
"ua-parser-js": "^2.0.0",
"uuid": "^11.0.3",
"zxing-wasm": "^1.3.4"
},
"devDependencies": {
"@bufbuild/buf": "^1.47.2",
"@bufbuild/protobuf": "^2.2.2",
"@bufbuild/protoc-gen-es": "^2.2.2",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@eslint/js": "^9.9.0",
"@fontsource/montserrat": "^5.1.0",
"@fontsource/roboto-mono": "^5.1.0",
"@keplr-wallet/types": "^0.12.169",
"@solana/web3.js": "^1.98.0",
"@trustwallet/wallet-core": "^4.1.21",
"@types/chrome": "^0.0.287",
"@types/keymirror": "^0.1.4",
"@types/node": "^22.7.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"sass": "^1.79.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.1.8",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-tsconfig-paths": "^5.1.3"
},
"manifest": {
"accounts": "accounts.html",
"background": "src/background/index.ts",
"content": "src/content/index.ts",
"import": "import.html",
"popup": "popup.html",
"relay": "src/relay/index.ts",
"transaction": "transaction.html",
"vaults": "vaults.html"
}
}