-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.78 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
{
"name": "kivuli-extension",
"private": true,
"version": "0.1.0",
"description": "Kivuli browser extension: private money for Ethereum and Solana, with a private wallet for every dApp.",
"license": "GPL-3.0-or-later",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build && node scripts/finalize-dist.mjs",
"release": "npm run build && node scripts/make-release-zip.mjs",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"demo:dev": "vite --config vite.demo.config.ts",
"demo:build": "vite build --config vite.demo.config.ts",
"icons": "python3 scripts/build-icons.py && python3 scripts/check-icons.py"
},
"dependencies": {
"@fontsource-variable/bricolage-grotesque": "^5.3.0",
"@fontsource-variable/geist": "^5.3.0",
"@fontsource-variable/geist-mono": "^5.3.0",
"@noble/hashes": "^1.5.0",
"@opaquecash/deployments": "0.3.2",
"@opaquecash/opaque": "0.5.3",
"@opaquecash/stealth-wasm": "0.3.0",
"@scure/bip39": "^2.2.0",
"buffer": "^6.0.3",
"lucide-react": "1.28.0",
"process": "^0.11.10",
"qrcode.react": "4.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"viem": "^2.21.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.7.1",
"@storybook/addon-a11y": "^10.5.5",
"@storybook/react-vite": "^10.5.5",
"@tailwindcss/vite": "^4.3.3",
"@types/chrome": "^0.0.287",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.0.0",
"storybook": "^10.5.5",
"tailwindcss": "^4.3.3",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^2.1.8"
}
}