-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.95 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
{
"name": "dig-browser-extension",
"version": "1.106.4",
"description": "DIG Network Browser Extension - DIG Home, chia:// resolution, window.chia wallet, verified badge",
"main": "stub-server.js",
"types": "messages.d.ts",
"scripts": {
"test": "npm run test:coverage",
"allow-scripts": "node scripts/allow-scripts.mjs",
"allow-scripts:check": "node scripts/allow-scripts.mjs --check",
"test:node": "node --test tests/*.test.mjs",
"test:web": "vitest run --coverage",
"test:coverage": "npm run test:node && npm run test:web",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src",
"build:web": "vite build",
"build": "node build.js",
"build:zip": "node build.js --zip",
"build:store": "node build.js --store",
"server": "cd server && npm start",
"server:install": "cd server && npm install",
"server:stub": "node stub-server.js",
"generate-icons": "node generate-icons.js",
"prepare": "npm run build",
"screenshots": "playwright test",
"test:prices": "playwright test e2e/prices.spec.ts",
"test:contacts": "playwright test e2e/contacts.spec.ts",
"test:send-receive-trio": "playwright test e2e/send-receive-trio.spec.ts e2e/qr-scanner-camera.spec.ts",
"test:sw": "playwright test --config=playwright.sw.config.ts"
},
"keywords": [
"dig-network",
"browser-extension",
"protocol-handler"
],
"author": "",
"license": "MIT",
"dependencies": {
"@dignetwork/chia-provider": "github:DIG-Network/chia-provider#v0.2.0",
"@dignetwork/chip35-dl-coin-wasm": "^0.14.0",
"@dignetwork/components": "^0.1.2",
"@dignetwork/dig-keystore-wasm": "file:./third_party/dig-keystore-wasm",
"@fontsource/space-grotesk": "^5.2.10",
"@fontsource/space-mono": "^5.2.9",
"@reduxjs/toolkit": "^2.5.0",
"@scure/bip39": "^1.6.0",
"chia-wallet-sdk-wasm": "^0.33.0",
"hash-wasm": "^4.12.0",
"jsqr": "^1.4.0",
"qrcode-generator": "^1.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^7.1.0",
"react-redux": "^9.2.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.61.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/chrome": "^0.0.287",
"@types/node": "^20.19.43",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"esbuild": "^0.25.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-testing-library": "^7.16.2",
"globals": "^15.14.0",
"jest-axe": "^9.0.0",
"jsdom": "^25.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.6.0",
"vitest": "^2.1.8"
}
}