@ledgerhq/device-trusted-app-kit-ledger-keyring-protocol 0.0.0-test-attest-npmjs-1-20251120163531 → 0.0.0-test-attest-npmjs-x-20251125162751
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/lib/cjs/package.json +36 -32
- package/lib/esm/package.json +36 -32
- package/package.json +31 -27
package/lib/cjs/package.json
CHANGED
|
@@ -1,56 +1,60 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"@ledgerhq/device-management-kit": "workspace:*",
|
|
4
|
+
"@ledgerhq/signer-utils": "workspace:*",
|
|
5
|
+
"@noble/ciphers": "^1.3.0",
|
|
6
|
+
"@noble/curves": "^1.9.7",
|
|
7
|
+
"@noble/hashes": "^1.8.0",
|
|
8
|
+
"inversify": "catalog:",
|
|
9
|
+
"purify-ts": "catalog:",
|
|
10
|
+
"reflect-metadata": "catalog:",
|
|
11
|
+
"rxjs": "catalog:",
|
|
12
|
+
"xstate": "catalog:"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@ledgerhq/eslint-config-dsdk": "workspace:*",
|
|
16
|
+
"@ledgerhq/ldmk-tool": "workspace:*",
|
|
17
|
+
"@ledgerhq/prettier-config-dsdk": "workspace:*",
|
|
18
|
+
"@ledgerhq/tsconfig-dsdk": "workspace:*",
|
|
19
|
+
"@ledgerhq/vitest-config-dmk": "workspace:*"
|
|
20
|
+
},
|
|
6
21
|
"exports": {
|
|
7
22
|
".": {
|
|
8
|
-
"types": "./lib/types/index.d.ts",
|
|
9
23
|
"import": "./lib/esm/index.js",
|
|
10
|
-
"require": "./lib/cjs/index.js"
|
|
24
|
+
"require": "./lib/cjs/index.js",
|
|
25
|
+
"types": "./lib/types/index.d.ts"
|
|
11
26
|
},
|
|
12
27
|
"./*": {
|
|
13
|
-
"types": "./lib/types/*",
|
|
14
28
|
"import": "./lib/esm/*",
|
|
15
|
-
"require": "./lib/cjs/*"
|
|
29
|
+
"require": "./lib/cjs/*",
|
|
30
|
+
"types": "./lib/types/*"
|
|
16
31
|
}
|
|
17
32
|
},
|
|
18
33
|
"files": [
|
|
19
34
|
"./lib"
|
|
20
35
|
],
|
|
36
|
+
"license": "Apache-2.0",
|
|
37
|
+
"name": "@ledgerhq/device-trusted-app-kit-ledger-keyring-protocol",
|
|
38
|
+
"private": false,
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/LedgerHQ/device-sdk-ts.git"
|
|
42
|
+
},
|
|
21
43
|
"scripts": {
|
|
22
|
-
"prebuild": "rimraf lib",
|
|
23
44
|
"build": "pnpm ldmk-tool build --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
24
45
|
"dev": "concurrently \"pnpm watch:builds\" \"pnpm watch:types\"",
|
|
25
|
-
"watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
26
|
-
"watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\"",
|
|
27
46
|
"lint": "eslint",
|
|
28
47
|
"lint:fix": "pnpm lint --fix",
|
|
29
48
|
"postpack": "find . -name '*.tgz' -exec cp {} ../../dist/ \\; ",
|
|
49
|
+
"prebuild": "rimraf lib",
|
|
30
50
|
"prettier": "prettier . --check",
|
|
31
51
|
"prettier:fix": "prettier . --write",
|
|
32
|
-
"typecheck": "tsc --noEmit",
|
|
33
52
|
"test": "vitest run --passWithNoTests",
|
|
53
|
+
"test:coverage": "vitest run --coverage --passWithNoTests",
|
|
34
54
|
"test:watch": "vitest --passWithNoTests",
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"@ledgerhq/device-management-kit": "workspace:*",
|
|
39
|
-
"@ledgerhq/signer-utils": "workspace:*",
|
|
40
|
-
"@noble/ciphers": "^1.3.0",
|
|
41
|
-
"@noble/curves": "^1.9.7",
|
|
42
|
-
"@noble/hashes": "^1.8.0",
|
|
43
|
-
"inversify": "catalog:",
|
|
44
|
-
"purify-ts": "catalog:",
|
|
45
|
-
"reflect-metadata": "catalog:",
|
|
46
|
-
"rxjs": "catalog:",
|
|
47
|
-
"xstate": "catalog:"
|
|
55
|
+
"typecheck": "tsc --noEmit",
|
|
56
|
+
"watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
57
|
+
"watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\""
|
|
48
58
|
},
|
|
49
|
-
"
|
|
50
|
-
"@ledgerhq/eslint-config-dsdk": "workspace:*",
|
|
51
|
-
"@ledgerhq/ldmk-tool": "workspace:*",
|
|
52
|
-
"@ledgerhq/prettier-config-dsdk": "workspace:*",
|
|
53
|
-
"@ledgerhq/tsconfig-dsdk": "workspace:*",
|
|
54
|
-
"@ledgerhq/vitest-config-dmk": "workspace:*"
|
|
55
|
-
}
|
|
59
|
+
"version": "0.0.0-test-attest-npmjs-x-20251125162751"
|
|
56
60
|
}
|
package/lib/esm/package.json
CHANGED
|
@@ -1,56 +1,60 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"@ledgerhq/device-management-kit": "workspace:*",
|
|
4
|
+
"@ledgerhq/signer-utils": "workspace:*",
|
|
5
|
+
"@noble/ciphers": "^1.3.0",
|
|
6
|
+
"@noble/curves": "^1.9.7",
|
|
7
|
+
"@noble/hashes": "^1.8.0",
|
|
8
|
+
"inversify": "catalog:",
|
|
9
|
+
"purify-ts": "catalog:",
|
|
10
|
+
"reflect-metadata": "catalog:",
|
|
11
|
+
"rxjs": "catalog:",
|
|
12
|
+
"xstate": "catalog:"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@ledgerhq/eslint-config-dsdk": "workspace:*",
|
|
16
|
+
"@ledgerhq/ldmk-tool": "workspace:*",
|
|
17
|
+
"@ledgerhq/prettier-config-dsdk": "workspace:*",
|
|
18
|
+
"@ledgerhq/tsconfig-dsdk": "workspace:*",
|
|
19
|
+
"@ledgerhq/vitest-config-dmk": "workspace:*"
|
|
20
|
+
},
|
|
6
21
|
"exports": {
|
|
7
22
|
".": {
|
|
8
|
-
"types": "./lib/types/index.d.ts",
|
|
9
23
|
"import": "./lib/esm/index.js",
|
|
10
|
-
"require": "./lib/cjs/index.js"
|
|
24
|
+
"require": "./lib/cjs/index.js",
|
|
25
|
+
"types": "./lib/types/index.d.ts"
|
|
11
26
|
},
|
|
12
27
|
"./*": {
|
|
13
|
-
"types": "./lib/types/*",
|
|
14
28
|
"import": "./lib/esm/*",
|
|
15
|
-
"require": "./lib/cjs/*"
|
|
29
|
+
"require": "./lib/cjs/*",
|
|
30
|
+
"types": "./lib/types/*"
|
|
16
31
|
}
|
|
17
32
|
},
|
|
18
33
|
"files": [
|
|
19
34
|
"./lib"
|
|
20
35
|
],
|
|
36
|
+
"license": "Apache-2.0",
|
|
37
|
+
"name": "@ledgerhq/device-trusted-app-kit-ledger-keyring-protocol",
|
|
38
|
+
"private": false,
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/LedgerHQ/device-sdk-ts.git"
|
|
42
|
+
},
|
|
21
43
|
"scripts": {
|
|
22
|
-
"prebuild": "rimraf lib",
|
|
23
44
|
"build": "pnpm ldmk-tool build --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
24
45
|
"dev": "concurrently \"pnpm watch:builds\" \"pnpm watch:types\"",
|
|
25
|
-
"watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
26
|
-
"watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\"",
|
|
27
46
|
"lint": "eslint",
|
|
28
47
|
"lint:fix": "pnpm lint --fix",
|
|
29
48
|
"postpack": "find . -name '*.tgz' -exec cp {} ../../dist/ \\; ",
|
|
49
|
+
"prebuild": "rimraf lib",
|
|
30
50
|
"prettier": "prettier . --check",
|
|
31
51
|
"prettier:fix": "prettier . --write",
|
|
32
|
-
"typecheck": "tsc --noEmit",
|
|
33
52
|
"test": "vitest run --passWithNoTests",
|
|
53
|
+
"test:coverage": "vitest run --coverage --passWithNoTests",
|
|
34
54
|
"test:watch": "vitest --passWithNoTests",
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"@ledgerhq/device-management-kit": "workspace:*",
|
|
39
|
-
"@ledgerhq/signer-utils": "workspace:*",
|
|
40
|
-
"@noble/ciphers": "^1.3.0",
|
|
41
|
-
"@noble/curves": "^1.9.7",
|
|
42
|
-
"@noble/hashes": "^1.8.0",
|
|
43
|
-
"inversify": "catalog:",
|
|
44
|
-
"purify-ts": "catalog:",
|
|
45
|
-
"reflect-metadata": "catalog:",
|
|
46
|
-
"rxjs": "catalog:",
|
|
47
|
-
"xstate": "catalog:"
|
|
55
|
+
"typecheck": "tsc --noEmit",
|
|
56
|
+
"watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
57
|
+
"watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\""
|
|
48
58
|
},
|
|
49
|
-
"
|
|
50
|
-
"@ledgerhq/eslint-config-dsdk": "workspace:*",
|
|
51
|
-
"@ledgerhq/ldmk-tool": "workspace:*",
|
|
52
|
-
"@ledgerhq/prettier-config-dsdk": "workspace:*",
|
|
53
|
-
"@ledgerhq/tsconfig-dsdk": "workspace:*",
|
|
54
|
-
"@ledgerhq/vitest-config-dmk": "workspace:*"
|
|
55
|
-
}
|
|
59
|
+
"version": "0.0.0-test-attest-npmjs-x-20251125162751"
|
|
56
60
|
}
|
package/package.json
CHANGED
|
@@ -1,23 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@ledgerhq/device-trusted-app-kit-ledger-keyring-protocol",
|
|
3
|
-
"version": "0.0.0-test-attest-npmjs-1-20251120163531",
|
|
4
|
-
"license": "Apache-2.0",
|
|
5
|
-
"private": false,
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"types": "./lib/types/index.d.ts",
|
|
9
|
-
"import": "./lib/esm/index.js",
|
|
10
|
-
"require": "./lib/cjs/index.js"
|
|
11
|
-
},
|
|
12
|
-
"./*": {
|
|
13
|
-
"types": "./lib/types/*",
|
|
14
|
-
"import": "./lib/esm/*",
|
|
15
|
-
"require": "./lib/cjs/*"
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"files": [
|
|
19
|
-
"./lib"
|
|
20
|
-
],
|
|
21
2
|
"dependencies": {
|
|
22
3
|
"@noble/ciphers": "^1.3.0",
|
|
23
4
|
"@noble/curves": "^1.9.7",
|
|
@@ -27,29 +8,52 @@
|
|
|
27
8
|
"reflect-metadata": "0.2.2",
|
|
28
9
|
"rxjs": "7.8.2",
|
|
29
10
|
"xstate": "5.19.2",
|
|
30
|
-
"@ledgerhq/device-management-kit": "0.0.0-test-attest-npmjs-
|
|
31
|
-
"@ledgerhq/signer-utils": "0.0.0-test-attest-npmjs-
|
|
11
|
+
"@ledgerhq/device-management-kit": "0.0.0-test-attest-npmjs-x-20251125162751",
|
|
12
|
+
"@ledgerhq/signer-utils": "0.0.0-test-attest-npmjs-x-20251125162751"
|
|
32
13
|
},
|
|
33
14
|
"devDependencies": {
|
|
34
15
|
"@ledgerhq/eslint-config-dsdk": "0.0.2",
|
|
16
|
+
"@ledgerhq/prettier-config-dsdk": "0.0.2",
|
|
35
17
|
"@ledgerhq/ldmk-tool": "0.0.1",
|
|
36
18
|
"@ledgerhq/tsconfig-dsdk": "1.0.1",
|
|
37
|
-
"@ledgerhq/prettier-config-dsdk": "0.0.2",
|
|
38
19
|
"@ledgerhq/vitest-config-dmk": "0.0.0"
|
|
39
20
|
},
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"import": "./lib/esm/index.js",
|
|
24
|
+
"require": "./lib/cjs/index.js",
|
|
25
|
+
"types": "./lib/types/index.d.ts"
|
|
26
|
+
},
|
|
27
|
+
"./*": {
|
|
28
|
+
"import": "./lib/esm/*",
|
|
29
|
+
"require": "./lib/cjs/*",
|
|
30
|
+
"types": "./lib/types/*"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"./lib"
|
|
35
|
+
],
|
|
36
|
+
"license": "Apache-2.0",
|
|
37
|
+
"name": "@ledgerhq/device-trusted-app-kit-ledger-keyring-protocol",
|
|
38
|
+
"private": false,
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/LedgerHQ/device-sdk-ts.git"
|
|
42
|
+
},
|
|
43
|
+
"version": "0.0.0-test-attest-npmjs-x-20251125162751",
|
|
40
44
|
"scripts": {
|
|
41
|
-
"prebuild": "rimraf lib",
|
|
42
45
|
"build": "pnpm ldmk-tool build --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
43
46
|
"dev": "concurrently \"pnpm watch:builds\" \"pnpm watch:types\"",
|
|
44
|
-
"watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
45
|
-
"watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\"",
|
|
46
47
|
"lint": "eslint",
|
|
47
48
|
"lint:fix": "pnpm lint --fix",
|
|
49
|
+
"prebuild": "rimraf lib",
|
|
48
50
|
"prettier": "prettier . --check",
|
|
49
51
|
"prettier:fix": "prettier . --write",
|
|
50
|
-
"typecheck": "tsc --noEmit",
|
|
51
52
|
"test": "vitest run --passWithNoTests",
|
|
53
|
+
"test:coverage": "vitest run --coverage --passWithNoTests",
|
|
52
54
|
"test:watch": "vitest --passWithNoTests",
|
|
53
|
-
"
|
|
55
|
+
"typecheck": "tsc --noEmit",
|
|
56
|
+
"watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
57
|
+
"watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\""
|
|
54
58
|
}
|
|
55
59
|
}
|