-
Notifications
You must be signed in to change notification settings - Fork 480
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.36 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
{
"name": "@ledgerhq/live-cli",
"version": "26.0.0",
"description": "ledger-live CLI version",
"repository": {
"type": "git",
"url": "https://github.com/LedgerHQ/ledger-live.git"
},
"bugs": {
"url": "https://github.com/LedgerHQ/ledger-live/issues"
},
"bin": {
"ledger-live": "./bin/index.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"prebuild": "zx ./scripts/gen.mjs",
"build": "zx ./scripts/build.mjs",
"prepublishOnly": "zx ./scripts/build.mjs",
"watch": "rslib build --watch",
"typecheck": "tsc --project src/tsconfig.json --noEmit --customConditions node",
"lint": "oxlint .",
"lint:fix": "oxfmt . && oxlint . --fix",
"format": "oxfmt .",
"format:check": "oxfmt . --check",
"test": "zx ./scripts/test.mjs"
},
"dependencies": {
"@domain/api-currency-token": "workspace:^",
"@domain/entity-currency-crypto": "workspace:^",
"@features/platform-currencies": "workspace:^",
"@ledgerhq/cryptoassets": "workspace:^",
"@ledgerhq/errors": "workspace:^",
"@ledgerhq/hw-transport-node-speculos": "workspace:^",
"@ledgerhq/ledger-wallet-framework": "workspace:^",
"@ledgerhq/live-common": "workspace:^",
"@ledgerhq/live-config": "workspace:^",
"@ledgerhq/live-countervalues": "workspace:^",
"@ledgerhq/live-currency-format": "workspace:^",
"@ledgerhq/live-dmk-speculos": "workspace:^",
"@ledgerhq/live-env": "workspace:^",
"@ledgerhq/logs": "workspace:^",
"@ledgerhq/types-cryptoassets": "workspace:^",
"@ledgerhq/types-live": "workspace:^",
"@reduxjs/toolkit": "catalog:",
"bigint-buffer": "*",
"bignumber.js": "9.1.2",
"command-line-args": "5.2.1",
"lodash": "4.17.21",
"readable-stream": "^4.7.0",
"rxjs": "catalog:"
},
"devDependencies": {
"@pnpm/exportable-manifest": "1000.0.7",
"@pnpm/read-project-manifest": "1000.0.6",
"@types/command-line-args": "5.2.3",
"@types/lodash": "4.17.7",
"@types/node": "catalog:",
"ts-node": "10.9.2",
"@rslib/core": "catalog:",
"yaml": "2.8.1",
"oxfmt": "catalog:",
"oxlint": "catalog:"
},
"optionalDependencies": {
"@oxlint/binding-darwin-arm64": "1.51.0",
"@oxlint/binding-darwin-x64": "1.51.0",
"@oxlint/binding-linux-x64-gnu": "1.51.0",
"@oxlint/binding-win32-x64-msvc": "1.51.0"
},
"publishConfig": {
"directory": "dist"
}
}