forked from stagwallet/stag-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 KB
/
package.json
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
{
"manifest_version": 2,
"name": "relayone-extension",
"version": "0.0.1",
"private": true,
"description": "Bitcoin Wallet For Machines & Humans Alike",
"author": "STAG",
"scripts": {
"start": "parcel watch --no-hmr src/manifest.json",
"build": "parcel build src/manifest.json",
"build-release": "rm -rf dist .parcel-cache && parcel build --no-source-maps src/manifest.json",
"release": "cross-env NODE_ENV=production rollup -c",
"test": "vitest run --single-thread"
},
"dependencies": {
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^2.0.0",
"@relayx/crypto": "^6.3.2",
"@relayx/frame-messaging": "^1.1.1",
"@relayx/wallet": "^7.0.0",
"@scure/bip32": "^1.3.2",
"@scure/bip39": "^1.2.1",
"@scure/btc-signer": "^1.1.0",
"async-mutex": "^0.4.0",
"parcel": "^2.8.3",
"uuid-random": "^1.3.2",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@parcel/config-webextension": "^2.8.3",
"@parcel/optimizer-data-url": "2.8.3",
"@parcel/transformer-inline-string": "2.8.3",
"@types/node": "^18.11.18",
"@types/webextension-polyfill": "^0.10.0",
"buffer": "^5.5.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"packageManager": "[email protected]"
}