@ledgerhq/device-signer-kit-solana 1.5.0 → 1.5.1

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