-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.1 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.1 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
{
"name": "@dusk/wallet",
"private": true,
"version": "0.0.1",
"type": "module",
"author": "Dusk Network",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dusk-network/wallet.git"
},
"homepage": "https://github.com/dusk-network/wallet",
"bugs": {
"url": "https://github.com/dusk-network/wallet/issues"
},
"scripts": {
"generate:shells": "node scripts/generate-shells.js",
"prebuild": "node scripts/generate-shells.js",
"build": "vite build",
"dev": "vite build --watch",
"dev:tauri": "vite -c vite.tauri.config.js --host 127.0.0.1",
"build:tauri": "vite build -c vite.tauri.config.js",
"prebuild:chrome": "node scripts/generate-shells.js",
"build:chrome": "vite build -c vite.config.js",
"prebuild:firefox": "node scripts/generate-shells.js",
"build:firefox": "vite build -c vite.firefox.config.js",
"prebuild:extension": "node scripts/generate-shells.js",
"build:extension": "vite build -c vite.config.js",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"rusk:up": "docker compose -f docker-compose.rusk.yml up -d",
"rusk:down": "docker compose -f docker-compose.rusk.yml down",
"rusk:logs": "docker compose -f docker-compose.rusk.yml logs -f --tail=200",
"rusk:wait": "node scripts/wait-rusk.js",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"e2e": "playwright test",
"e2e:rusk": "node scripts/e2e-with-rusk.js"
},
"dependencies": {
"@dusk/w3sper": "npm:@jsr/dusk__w3sper@1.6.0",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-store": "^2.0.0",
"@tauri-apps/plugin-stronghold": "^2.0.0",
"bip39": "3.1.0",
"jsqr": "^1.4.0",
"qrcode-generator": "^2.0.4"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@storybook/html-vite": "^8.6.14",
"@vitest/coverage-v8": "^4.0.18",
"fake-indexeddb": "^6.2.5",
"storybook": "^8.6.14",
"vite": "^5.3.1",
"vite-plugin-node-polyfills": "^0.23.0",
"vitest": "^4.0.18"
}
}