@ledgerhq/device-signer-kit-ethereum 1.9.3 → 1.9.4
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 +42 -38
- package/lib/esm/package.json +42 -38
- package/lib/types/tsconfig.prod.tsbuildinfo +1 -1
- package/package.json +39 -35
package/lib/cjs/package.json
CHANGED
|
@@ -1,62 +1,66 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"@ledgerhq/signer-utils": "workspace:^",
|
|
4
|
+
"ethers": "catalog:",
|
|
5
|
+
"inversify": "catalog:",
|
|
6
|
+
"purify-ts": "catalog:",
|
|
7
|
+
"reflect-metadata": "catalog:",
|
|
8
|
+
"semver": "catalog:",
|
|
9
|
+
"xstate": "catalog:"
|
|
10
|
+
},
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"@ledgerhq/context-module": "workspace:^",
|
|
13
|
+
"@ledgerhq/device-management-kit": "workspace:^",
|
|
14
|
+
"@ledgerhq/eslint-config-dsdk": "workspace:^",
|
|
15
|
+
"@ledgerhq/ldmk-tool": "workspace:^",
|
|
16
|
+
"@ledgerhq/prettier-config-dsdk": "workspace:^",
|
|
17
|
+
"@ledgerhq/tsconfig-dsdk": "workspace:^",
|
|
18
|
+
"@ledgerhq/vitest-config-dmk": "workspace:^",
|
|
19
|
+
"@types/semver": "catalog:",
|
|
20
|
+
"rxjs": "catalog:",
|
|
21
|
+
"ts-node": "catalog:"
|
|
22
|
+
},
|
|
6
23
|
"exports": {
|
|
7
24
|
".": {
|
|
8
|
-
"types": "./lib/types/index.d.ts",
|
|
9
25
|
"import": "./lib/esm/index.js",
|
|
10
|
-
"require": "./lib/cjs/index.js"
|
|
26
|
+
"require": "./lib/cjs/index.js",
|
|
27
|
+
"types": "./lib/types/index.d.ts"
|
|
11
28
|
},
|
|
12
29
|
"./*": {
|
|
13
|
-
"types": "./lib/types/*",
|
|
14
30
|
"import": "./lib/esm/*",
|
|
15
|
-
"require": "./lib/cjs/*"
|
|
31
|
+
"require": "./lib/cjs/*",
|
|
32
|
+
"types": "./lib/types/*"
|
|
16
33
|
}
|
|
17
34
|
},
|
|
18
35
|
"files": [
|
|
19
36
|
"./lib"
|
|
20
37
|
],
|
|
38
|
+
"license": "Apache-2.0",
|
|
39
|
+
"name": "@ledgerhq/device-signer-kit-ethereum",
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"@ledgerhq/context-module": "workspace:^",
|
|
42
|
+
"@ledgerhq/device-management-kit": "workspace:^"
|
|
43
|
+
},
|
|
44
|
+
"private": false,
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/LedgerHQ/device-sdk-ts.git"
|
|
48
|
+
},
|
|
21
49
|
"scripts": {
|
|
22
|
-
"prebuild": "rimraf lib",
|
|
23
50
|
"build": "pnpm ldmk-tool build --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
24
51
|
"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
52
|
"lint": "eslint",
|
|
28
53
|
"lint:fix": "pnpm lint --fix",
|
|
29
54
|
"postpack": "find . -name '*.tgz' -exec cp {} ../../../dist/ \\; ",
|
|
55
|
+
"prebuild": "rimraf lib",
|
|
30
56
|
"prettier": "prettier . --check",
|
|
31
57
|
"prettier:fix": "prettier . --write",
|
|
32
|
-
"typecheck": "tsc --noEmit",
|
|
33
58
|
"test": "vitest run",
|
|
59
|
+
"test:coverage": "vitest run --coverage",
|
|
34
60
|
"test:watch": "vitest",
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"@ledgerhq/signer-utils": "^1.1.0",
|
|
39
|
-
"ethers": "catalog:",
|
|
40
|
-
"inversify": "catalog:",
|
|
41
|
-
"purify-ts": "catalog:",
|
|
42
|
-
"reflect-metadata": "catalog:",
|
|
43
|
-
"semver": "catalog:",
|
|
44
|
-
"xstate": "catalog:"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@ledgerhq/context-module": "workspace:*",
|
|
48
|
-
"@ledgerhq/device-management-kit": "workspace:*",
|
|
49
|
-
"@ledgerhq/ldmk-tool": "workspace:*",
|
|
50
|
-
"@ledgerhq/eslint-config-dsdk": "workspace:*",
|
|
51
|
-
"@ledgerhq/prettier-config-dsdk": "workspace:*",
|
|
52
|
-
"@ledgerhq/tsconfig-dsdk": "workspace:*",
|
|
53
|
-
"@ledgerhq/vitest-config-dmk": "workspace:*",
|
|
54
|
-
"@types/semver": "catalog:",
|
|
55
|
-
"rxjs": "catalog:",
|
|
56
|
-
"ts-node": "catalog:"
|
|
61
|
+
"typecheck": "tsc --noEmit",
|
|
62
|
+
"watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
63
|
+
"watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\""
|
|
57
64
|
},
|
|
58
|
-
"
|
|
59
|
-
"@ledgerhq/context-module": "workspace:*",
|
|
60
|
-
"@ledgerhq/device-management-kit": "workspace:*"
|
|
61
|
-
}
|
|
65
|
+
"version": "1.9.4"
|
|
62
66
|
}
|
package/lib/esm/package.json
CHANGED
|
@@ -1,62 +1,66 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"@ledgerhq/signer-utils": "workspace:^",
|
|
4
|
+
"ethers": "catalog:",
|
|
5
|
+
"inversify": "catalog:",
|
|
6
|
+
"purify-ts": "catalog:",
|
|
7
|
+
"reflect-metadata": "catalog:",
|
|
8
|
+
"semver": "catalog:",
|
|
9
|
+
"xstate": "catalog:"
|
|
10
|
+
},
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"@ledgerhq/context-module": "workspace:^",
|
|
13
|
+
"@ledgerhq/device-management-kit": "workspace:^",
|
|
14
|
+
"@ledgerhq/eslint-config-dsdk": "workspace:^",
|
|
15
|
+
"@ledgerhq/ldmk-tool": "workspace:^",
|
|
16
|
+
"@ledgerhq/prettier-config-dsdk": "workspace:^",
|
|
17
|
+
"@ledgerhq/tsconfig-dsdk": "workspace:^",
|
|
18
|
+
"@ledgerhq/vitest-config-dmk": "workspace:^",
|
|
19
|
+
"@types/semver": "catalog:",
|
|
20
|
+
"rxjs": "catalog:",
|
|
21
|
+
"ts-node": "catalog:"
|
|
22
|
+
},
|
|
6
23
|
"exports": {
|
|
7
24
|
".": {
|
|
8
|
-
"types": "./lib/types/index.d.ts",
|
|
9
25
|
"import": "./lib/esm/index.js",
|
|
10
|
-
"require": "./lib/cjs/index.js"
|
|
26
|
+
"require": "./lib/cjs/index.js",
|
|
27
|
+
"types": "./lib/types/index.d.ts"
|
|
11
28
|
},
|
|
12
29
|
"./*": {
|
|
13
|
-
"types": "./lib/types/*",
|
|
14
30
|
"import": "./lib/esm/*",
|
|
15
|
-
"require": "./lib/cjs/*"
|
|
31
|
+
"require": "./lib/cjs/*",
|
|
32
|
+
"types": "./lib/types/*"
|
|
16
33
|
}
|
|
17
34
|
},
|
|
18
35
|
"files": [
|
|
19
36
|
"./lib"
|
|
20
37
|
],
|
|
38
|
+
"license": "Apache-2.0",
|
|
39
|
+
"name": "@ledgerhq/device-signer-kit-ethereum",
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"@ledgerhq/context-module": "workspace:^",
|
|
42
|
+
"@ledgerhq/device-management-kit": "workspace:^"
|
|
43
|
+
},
|
|
44
|
+
"private": false,
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/LedgerHQ/device-sdk-ts.git"
|
|
48
|
+
},
|
|
21
49
|
"scripts": {
|
|
22
|
-
"prebuild": "rimraf lib",
|
|
23
50
|
"build": "pnpm ldmk-tool build --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
24
51
|
"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
52
|
"lint": "eslint",
|
|
28
53
|
"lint:fix": "pnpm lint --fix",
|
|
29
54
|
"postpack": "find . -name '*.tgz' -exec cp {} ../../../dist/ \\; ",
|
|
55
|
+
"prebuild": "rimraf lib",
|
|
30
56
|
"prettier": "prettier . --check",
|
|
31
57
|
"prettier:fix": "prettier . --write",
|
|
32
|
-
"typecheck": "tsc --noEmit",
|
|
33
58
|
"test": "vitest run",
|
|
59
|
+
"test:coverage": "vitest run --coverage",
|
|
34
60
|
"test:watch": "vitest",
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"@ledgerhq/signer-utils": "^1.1.0",
|
|
39
|
-
"ethers": "catalog:",
|
|
40
|
-
"inversify": "catalog:",
|
|
41
|
-
"purify-ts": "catalog:",
|
|
42
|
-
"reflect-metadata": "catalog:",
|
|
43
|
-
"semver": "catalog:",
|
|
44
|
-
"xstate": "catalog:"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@ledgerhq/context-module": "workspace:*",
|
|
48
|
-
"@ledgerhq/device-management-kit": "workspace:*",
|
|
49
|
-
"@ledgerhq/ldmk-tool": "workspace:*",
|
|
50
|
-
"@ledgerhq/eslint-config-dsdk": "workspace:*",
|
|
51
|
-
"@ledgerhq/prettier-config-dsdk": "workspace:*",
|
|
52
|
-
"@ledgerhq/tsconfig-dsdk": "workspace:*",
|
|
53
|
-
"@ledgerhq/vitest-config-dmk": "workspace:*",
|
|
54
|
-
"@types/semver": "catalog:",
|
|
55
|
-
"rxjs": "catalog:",
|
|
56
|
-
"ts-node": "catalog:"
|
|
61
|
+
"typecheck": "tsc --noEmit",
|
|
62
|
+
"watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json",
|
|
63
|
+
"watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\""
|
|
57
64
|
},
|
|
58
|
-
"
|
|
59
|
-
"@ledgerhq/context-module": "workspace:*",
|
|
60
|
-
"@ledgerhq/device-management-kit": "workspace:*"
|
|
61
|
-
}
|
|
65
|
+
"version": "1.9.4"
|
|
62
66
|
}
|