-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.51 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.51 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
{
"name": "vidulum-app",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=22.12.0",
"_comment": "Node version defined in .nvmrc (single source of truth)"
},
"scripts": {
"dev": "vite",
"build": "npm run build:popup && npm run build:background && npm run build:content && npm run build:inpage && npm run copy:static",
"build:popup": "vite build",
"dev:web": "bash scripts/dev-web.sh",
"build:web": "vite build --config vite.config.web.ts",
"build:background": "vite build --config vite.config.background.ts",
"build:content": "vite build --config vite.config.content.ts",
"build:inpage": "vite build --config vite.config.inpage.ts",
"copy:static": "node scripts/copy-static.js",
"test": "jest",
"lint": "eslint src --ext ts,tsx",
"sync:chains": "npx ts-node --esm scripts/sync-chain-registry.ts",
"sync:chains:all": "npx ts-node --esm scripts/sync-chain-registry.ts --all",
"sync:evm": "npx ts-node --esm scripts/sync-evm-registry.ts",
"sync:evm:all": "npx ts-node --esm scripts/sync-evm-registry.ts --all"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.8.2",
"@cosmjs/amino": "^0.32.2",
"@cosmjs/crypto": "^0.32.2",
"@cosmjs/encoding": "^0.32.2",
"@cosmjs/proto-signing": "^0.32.2",
"@cosmjs/stargate": "^0.32.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^1.3.3",
"@noble/secp256k1": "^2.0.0",
"@skip-go/widget": "^3.14.23",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"framer-motion": "^10.16.16",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webextension-polyfill": "^0.10.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@crxjs/vite-plugin": "^2.3.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/chrome": "^0.0.258",
"@types/jest": "^29.5.11",
"@types/node": "^25.1.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/webextension-polyfill": "^0.10.7",
"@vitejs/plugin-react": "^4.2.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"vite": "^7.3.1",
"vite-plugin-node-polyfills": "^0.25.0",
"vite-plugin-web-extension": "^4.5.0"
}
}