-
Notifications
You must be signed in to change notification settings - Fork 327
/
package.json
226 lines (226 loc) · 11.4 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
{
"name": "@ledgerhq/ledger-live",
"version": "0.0.0",
"license": "MIT AND Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/LedgerHQ/ledger-live.git"
},
"bugs": {
"url": "https://github.com/LedgerHQ/ledger-live/issues"
},
"scripts": {
"bump": "changeset version",
"clean": "git clean -fdX",
"changelog": "changeset add",
"prerelease": "pnpm run build:libs",
"release": "changeset publish",
"build:libs": "pnpm turbo build --no-daemon --filter=\"./libs/**\" --filter=\"!./libs/ui/examples/**\"",
"build:libs:force": "pnpm -r --filter=\"./libs/**\" --filter=\"!./libs/ui/examples/**\" build",
"build:tests": "pnpm turbo build --no-daemon --filter=\"./tests/**\"",
"build:dummy-apps": "pnpm turbo build --filter=\"@ledgerhq/dummy-*-app\"",
"build:dummy-wallet-app": "pnpm turbo build --filter=\"@ledgerhq/dummy-wallet-app\"",
"build:dummy-live-app": "pnpm turbo build --filter=\"@ledgerhq/dummy-live-app\"",
"build:actions": "pnpm turbo build --filter=@actions/*",
"build:cli": "pnpm turbo build --no-daemon --filter=@ledgerhq/live-cli",
"build:coin": "pnpm turbo build --no-daemon --filter=\"./libs/coin-**\"",
"build:domain": "pnpm turbo build --no-daemon --filter=@ledgerhq/domain-service",
"build:network": "pnpm turbo build --no-daemon --filter=@ledgerhq/live-network",
"build:config": "pnpm turbo build --no-daemon --filter=@ledgerhq/live-config",
"build:llc": "pnpm turbo build --no-daemon --filter=./libs/ledger-live-common",
"build:lld": "pnpm turbo build --no-daemon --filter=ledger-live-desktop",
"build:lld:deps": "pnpm turbo build --no-daemon --filter=\"ledger-live-desktop^...\"",
"build:llm:android": "pnpm turbo android:apk:local --no-daemon --filter=live-mobile",
"build:llm:ios": "pnpm turbo ios:local:ipa --no-daemon --filter=live-mobile",
"build:llm:deps": "pnpm turbo build --no-daemon --filter=\"live-mobile^...\"",
"build:ljs": "pnpm turbo build --no-daemon --filter=\"./libs/ledgerjs/**\"",
"build:web-tools": "pnpm turbo build --no-daemon --filter=./apps/web-tools",
"build-ci:llm:ios": "pnpm turbo ios:ci:adhoc --no-daemon --filter=live-mobile",
"build-ci:llm:android": "pnpm turbo android:apk --no-daemon --filter=live-mobile",
"clean:ljs": "pnpm turbo clean --no-daemon --filter=\"./libs/ledgerjs/**\"",
"doc:ljs": "pnpm turbo doc --no-daemon --filter=\"./libs/ledgerjs/**\"",
"watch:ljs": "pnpm turbo watch --no-daemon --filter=\"./libs/ledgerjs/**\"",
"watch:common": "pnpm turbo watch --no-daemon --filter=./libs/ledger-live-common",
"dev:cli": "pnpm turbo watch --filter=@ledgerhq/live-cli",
"dev:lld": "pnpm turbo start --no-daemon --filter=ledger-live-desktop",
"dev:lld:debug": "DEV_TOOLS=1 LEDGER_INTERNAL_ARGS=--inspect ELECTRON_ARGS=--remote-debugging-port=8315 pnpm turbo start --no-daemon --filter=ledger-live-desktop",
"dev:llm": "pnpm turbo start --no-daemon --filter=live-mobile",
"release:lld": "pnpm turbo release --no-daemon --filter=ledger-live-desktop",
"pre:lld": "pnpm turbo pre-build --no-daemon --filter=ledger-live-desktop",
"nightly": "pnpm turbo nightly --no-daemon",
"nightly:lld": "pnpm turbo nightly --no-daemon --filter=ledger-live-desktop",
"test": "pnpm turbo test --no-daemon --concurrency=50%",
"run:cli": "./apps/cli/bin/index.js",
"lint": "pnpm turbo lint --no-daemon",
"lint:fix": "pnpm turbo lint:fix --no-daemon",
"typecheck": "pnpm turbo typecheck --no-daemon",
"knip-check": "pnpm turbo knip-check",
"unimported": "pnpm turbo unimported",
"desktop": "pnpm --filter ledger-live-desktop",
"cli": "pnpm --filter live-cli",
"coin": "pnpm --filter coin-framework",
"coin:coverage": "pnpm turbo coverage --filter=\"@ledgerhq/coin-*\" --concurrency=2 && mkdir -p coverage && mv libs/coin-modules/**/coverage/*.json coverage && pnpm exec nyc merge coverage coverage/coverage-final.json && pnpm exec nyc report -t coverage --report-dir coverage --reporter=html-spa",
"coin:coverage:clean": "rm -rf coverage && rm -rf libs/coin-modules/**/coverage",
"coin:algorand": "pnpm --filter coin-algorand",
"coin:bitcoin": "pnpm --filter coin-bitcoin",
"coin:cardano": "pnpm --filter coin-cardano",
"coin:cosmos": "pnpm --filter coin-cosmos",
"coin:elrond": "pnpm --filter coin-elrond",
"coin:evm": "pnpm --filter coin-evm",
"coin:framework": "pnpm --filter coin-framework",
"coin:tester": "pnpm --filter coin-tester",
"coin:near": "pnpm --filter coin-near",
"coin:polkadot": "pnpm --filter coin-polkadot",
"coin:ton": "pnpm --filter coin-ton",
"coin:solana": "pnpm --filter coin-solana",
"coin:icon": "pnpm --filter coin-icon",
"coin:stellar": "pnpm --filter coin-stellar",
"coin:tezos": "pnpm --filter coin-tezos",
"coin:tron": "pnpm --filter coin-tron",
"coin:xrp": "pnpm --filter coin-xrp",
"evm-tools": "pnpm --filter evm-tools",
"domain": "pnpm --filter domain-service",
"doc": "pnpm --filter docs",
"mobile": "pnpm --filter live-mobile",
"common": "pnpm --filter live-common",
"device-core": "pnpm --filter device-core",
"device-react": "pnpm --filter device-react",
"web-tools": "pnpm --filter web-tools",
"live-env": "pnpm --filter live-env",
"wallet": "pnpm --filter live-wallet",
"portfolio": "pnpm --filter live-portfolio",
"promise": "pnpm --filter live-promise",
"network": "pnpm --filter live-network",
"config": "pnpm --filter live-config",
"utils": "pnpm --filter live-utils",
"hooks": "pnpm --filter live-hooks",
"trustchain": "pnpm --filter trustchain",
"hw-trustchain": "pnpm --filter hw-trustchain",
"countervalues": "pnpm --filter live-countervalues",
"countervalues-react": "pnpm --filter live-countervalues-react",
"nft": "pnpm --filter live-nft",
"nft-react": "pnpm --filter live-nft-react",
"bot:github": "pnpm --filter live-github-bot",
"ljs:cryptoassets": "pnpm --filter cryptoassets",
"ljs:devices": "pnpm --filter devices",
"ljs:errors": "pnpm --filter errors",
"ljs:hw-app-algorand": "pnpm --filter hw-app-algorand",
"ljs:hw-app-btc": "pnpm --filter hw-app-btc",
"ljs:hw-app-cosmos": "pnpm --filter hw-app-cosmos",
"ljs:hw-app-eth": "pnpm --filter hw-app-eth",
"ljs:hw-app-exchange": "pnpm --filter hw-app-exchange",
"ljs:hw-app-helium": "pnpm --filter hw-app-helium",
"ljs:hw-app-near": "pnpm --filter hw-app-near",
"ljs:hw-app-polkadot": "pnpm --filter hw-app-polkadot",
"ljs:hw-app-solana": "pnpm --filter hw-app-solana",
"ljs:hw-app-str": "pnpm --filter hw-app-str",
"ljs:hw-app-tezos": "pnpm --filter hw-app-tezos",
"ljs:hw-app-trx": "pnpm --filter hw-app-trx",
"ljs:hw-app-xrp": "pnpm --filter hw-app-xrp",
"ljs:hw-app-icon": "pnpm --filter hw-app-icon",
"ljs:hw-transport": "pnpm --filter hw-transport",
"ljs:hw-transport-http": "pnpm --filter hw-transport-http",
"ljs:hw-transport-mocker": "pnpm --filter hw-transport-mocker",
"ljs:hw-transport-node-hid": "pnpm --filter hw-transport-node-hid",
"ljs:hw-transport-node-hid-noevents": "pnpm --filter hw-transport-node-hid-noevents",
"ljs:hw-transport-node-hid-singleton": "pnpm --filter hw-transport-node-hid-singleton",
"ljs:hw-transport-node-speculos": "pnpm --filter hw-transport-node-speculos",
"ljs:hw-transport-node-speculos-http": "pnpm --filter hw-transport-node-speculos-http",
"ljs:hw-transport-vault": "pnpm --filter hw-transport-vault",
"ljs:hw-transport-web-ble": "pnpm --filter hw-transport-web-ble",
"ljs:hw-transport-webhid": "pnpm --filter hw-transport-webhid",
"ljs:hw-transport-webusb": "pnpm --filter hw-transport-webusb",
"ljs:logs": "pnpm --filter logs",
"ljs:react-native-hid": "pnpm --filter react-native-hid",
"ljs:react-native-hw-transport-ble": "pnpm --filter react-native-hw-transport-ble",
"ljs:swift-bridge-hw-app-eth": "pnpm --filter swift-bridge-hw-app-eth",
"ljs:swift-bridge-hw-app-solana": "pnpm --filter swift-bridge-hw-app-solana",
"ljs:swift-bridge-hw-transport-ble": "pnpm --filter swift-bridge-hw-transport-ble",
"ljs:types-cryptoassets": "pnpm --filter types-cryptoassets",
"ljs:types-devices": "pnpm --filter types-devices",
"ljs:types-live": "pnpm --filter types-live",
"speculos-transport": "pnpm --filter speculos-transport",
"test-utils": "pnpm --filter test-utils",
"dummy-live-app": "pnpm --filter dummy-live-app",
"dummy-wallet-app": "pnpm --filter dummy-wallet-app",
"dummy-ptx-app": "pnpm --filter dummy-ptx-app",
"ethereum-provider": "pnpm --filter ethereum-provider",
"ui": "pnpm --filter ui",
"ui:react": "pnpm --filter react-ui",
"ui:native": "pnpm --filter native-ui",
"ui:icons": "pnpm --filter icons-ui",
"ui:crypto-icons": "pnpm --filter crypto-icons-ui",
"ui:shared": "pnpm --filter ui-shared",
"ui:example:next": "pnpm --filter=\"next.js-example\"",
"ui:example:webpack": "pnpm --filter=\"webpack.js-example\"",
"actions": "pnpm --filter @actions/*",
"import:cal-tokens": "pnpm --filter=\"@ledgerhq/cryptoassets\" import:cal-tokens"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@commitlint/prompt-cli": "17.8.1",
"@ledgerhq/create-release-hash": "workspace:*",
"@ledgerhq/pnpm-utils": "workspace:*",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"chalk": "4.1.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "5.1.3",
"knip": "5.34.1",
"nyc": "15.1.0",
"prettier": "3.2.5",
"rimraf": "4.4.1",
"turbo": "2.1.2",
"typescript": "5.4.3",
"unimported": "1.30.0",
"zx": "7.2.3"
},
"pnpm": {
"neverBuiltDependencies": [
"blake2"
],
"overrides": {
"stellar-base>sodium-native": "^3.2.1",
"remove-flow-types-loader>flow-remove-types": "^2",
"remove-flow-types-loader>loader-utils": "*",
"@ledgerhq/devices": "workspace:*",
"tslib": "2.6.2",
"@hashgraph/sdk>@grpc/grpc-js": "1.6.7",
"@hashgraph/sdk>@hashgraph/cryptography": "1.1.2",
"@ethersproject/providers>ws": "7.5.10"
},
"patchedDependencies": {
"react-native-fast-crypto@2.2.0": "patches/react-native-fast-crypto@2.2.0.patch",
"rn-fetch-blob@0.12.0": "patches/rn-fetch-blob@0.12.0.patch",
"react-native-image-crop-tools@1.6.4": "patches/react-native-image-crop-tools@1.6.4.patch",
"asyncstorage-down@4.2.0": "patches/asyncstorage-down@4.2.0.patch",
"detox@20.26.2": "patches/detox@20.26.2.patch",
"usb@2.9.0": "patches/usb@2.9.0.patch",
"react-native-video@5.2.1": "patches/react-native-video@5.2.1.patch",
"@hashgraph/sdk@2.14.2": "patches/@hashgraph__sdk@2.14.2.patch",
"@changesets/get-github-info@0.6.0": "patches/@changesets__get-github-info@0.6.0.patch",
"react-native-webview@13.10.3": "patches/react-native-webview@13.10.3.patch",
"buffer@6.0.3": "patches/buffer@6.0.3.patch",
"react-native-fast-pbkdf2@0.3.1": "patches/react-native-fast-pbkdf2@0.3.1.patch"
},
"packageExtensions": {
"eslint-config-next@*": {
"dependencies": {
"next": "*"
}
},
"detox-allure2-adapter": {
"dependencies": {
"tslib": "*"
}
}
}
},
"packageManager": "pnpm@9.12.3"
}