@ledgerhq/wallet-api-acre-module 0.16.0 → 0.17.0-nightly.20260410030516
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 +25 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/wallet-api-acre-module",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0-nightly.20260410030516",
|
|
4
4
|
"description": "Wallet-API ACRE Module for Ledger Live",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -29,7 +29,26 @@
|
|
|
29
29
|
"@ledgerhq/wallet-api-core": "^1.30.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@types/node": "24.12.0"
|
|
32
|
+
"@types/node": "24.12.0",
|
|
33
|
+
"oxfmt": "0.36.0",
|
|
34
|
+
"oxlint": "1.51.0"
|
|
35
|
+
},
|
|
36
|
+
"exports": {
|
|
37
|
+
".": {
|
|
38
|
+
"@ledgerhq/source": "./src/index.ts",
|
|
39
|
+
"import": "./lib-es/index.js",
|
|
40
|
+
"require": "./lib/index.js",
|
|
41
|
+
"default": "./lib/index.js"
|
|
42
|
+
},
|
|
43
|
+
"./lib-es/*": "./lib-es/*.js",
|
|
44
|
+
"./lib/*": "./lib/*.js",
|
|
45
|
+
"./*": {
|
|
46
|
+
"@ledgerhq/source": "./src/*.ts",
|
|
47
|
+
"import": "./lib-es/*.js",
|
|
48
|
+
"require": "./lib/*.js",
|
|
49
|
+
"default": "./lib/*.js"
|
|
50
|
+
},
|
|
51
|
+
"./package.json": "./package.json"
|
|
33
52
|
},
|
|
34
53
|
"scripts": {
|
|
35
54
|
"clean": "rimraf lib lib-es",
|
|
@@ -37,7 +56,9 @@
|
|
|
37
56
|
"prewatch": "pnpm build",
|
|
38
57
|
"watch": "tsc --watch --project tsconfig.build.json",
|
|
39
58
|
"watch:es": "tsc --watch --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
|
|
40
|
-
"lint": "
|
|
41
|
-
"lint:fix": "pnpm
|
|
59
|
+
"lint": "oxlint -c ../oxc-live-libs/.oxlintrc.json ./src",
|
|
60
|
+
"lint:fix": "pnpm exec oxfmt -c ../../.oxfmtrc.json ./src && oxlint -c ../oxc-live-libs/.oxlintrc.json ./src --fix --quiet",
|
|
61
|
+
"format": "pnpm exec oxfmt -c ../../.oxfmtrc.json ./src",
|
|
62
|
+
"format:check": "pnpm exec oxfmt -c ../../.oxfmtrc.json ./src --check"
|
|
42
63
|
}
|
|
43
64
|
}
|