@ledgerhq/wallet-api-feature-flag-module 0.5.0 → 0.6.0-nightly.20260317030141
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +24 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/wallet-api-feature-flag-module",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0-nightly.20260317030141",
|
|
4
4
|
"description": "Wallet-API Feature Flag Module for Ledger Live",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -25,18 +25,35 @@
|
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@ledgerhq/wallet-api-client": "^1.
|
|
29
|
-
"@ledgerhq/wallet-api-core": "^1.
|
|
28
|
+
"@ledgerhq/wallet-api-client": "^1.14.0",
|
|
29
|
+
"@ledgerhq/wallet-api-core": "^1.30.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@types/node": "
|
|
32
|
+
"@types/node": "24.12.0"
|
|
33
|
+
},
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"@ledgerhq/source": "./src/index.ts",
|
|
37
|
+
"import": "./lib-es/index.js",
|
|
38
|
+
"require": "./lib/index.js",
|
|
39
|
+
"default": "./lib/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./lib-es/*": "./lib-es/*.js",
|
|
42
|
+
"./lib/*": "./lib/*.js",
|
|
43
|
+
"./*": {
|
|
44
|
+
"@ledgerhq/source": "./src/*.ts",
|
|
45
|
+
"import": "./lib-es/*.js",
|
|
46
|
+
"require": "./lib/*.js",
|
|
47
|
+
"default": "./lib/*.js"
|
|
48
|
+
},
|
|
49
|
+
"./package.json": "./package.json"
|
|
33
50
|
},
|
|
34
51
|
"scripts": {
|
|
35
52
|
"clean": "rimraf lib lib-es",
|
|
36
|
-
"build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es && node scripts/createModulePackage.mjs",
|
|
53
|
+
"build": "tsc --project tsconfig.build.json && tsc --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es && node scripts/createModulePackage.mjs",
|
|
37
54
|
"prewatch": "pnpm build",
|
|
38
|
-
"watch": "tsc --watch",
|
|
39
|
-
"watch:es": "tsc --watch -m esnext --moduleResolution bundler --outDir lib-es",
|
|
55
|
+
"watch": "tsc --watch --project tsconfig.build.json",
|
|
56
|
+
"watch:es": "tsc --watch --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
|
|
40
57
|
"lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx",
|
|
41
58
|
"lint:fix": "pnpm lint --fix"
|
|
42
59
|
}
|