-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.5 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.5 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
{
"name": "xcp-wallet",
"description": "Counterparty Web3 Wallet",
"private": true,
"version": "0.3.2",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/XCP/extension.git"
},
"bugs": {
"url": "https://github.com/XCP/extension/issues"
},
"homepage": "https://github.com/XCP/extension#readme",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"dist": "node dist/build.js",
"test": "node -e \"if(!process.env.CI){console.error('Full suite runs in CI only. Run specific tests with:\\n npx vitest path/to/test.ts\\n npx playwright test path/to/test.ts');process.exit(1)}\" && wxt build && vitest run src && playwright test",
"test:unit": "node -e \"if(!process.env.CI){console.error('Full suite runs in CI only. Run specific tests with:\\n npx vitest path/to/test.ts');process.exit(1)}\" && wxt build && vitest run src",
"test:e2e": "node -e \"if(!process.env.CI){console.error('Full suite runs in CI only. Run specific tests with:\\n npx playwright test path/to/test.ts');process.exit(1)}\" && wxt build && playwright test",
"test:emulator": "vitest run --config vitest.emulator.config.ts",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"dependencies": {
"@headlessui/react": "2.2.9",
"@noble/curves": "2.0.1",
"@noble/hashes": "2.0.1",
"@noble/secp256k1": "3.0.0",
"@scure/base": "2.0.0",
"@scure/bip32": "2.0.1",
"@scure/bip39": "2.0.1",
"@scure/btc-signer": "2.0.1",
"@trezor/connect-webextension": "9.7.2",
"bignumber.js": "10.0.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router-dom": "7.13.2",
"webext-bridge": "6.0.1"
},
"overrides": {
"axios": ">=1.13.5"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@tailwindcss/vite": "4.2.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@trezor/trezor-user-env-link": "1.0.0",
"@types/chrome": "0.1.38",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "4.1.1",
"@wxt-dev/module-react": "1.2.2",
"archiver": "7.0.1",
"fast-check": "4.6.0",
"happy-dom": "20.8.8",
"tailwindcss": "4.2.2",
"typescript": "6.0.2",
"vite-plugin-remove-console": "2.2.0",
"vitest": "4.1.1",
"wxt": "0.20.20"
}
}