@ledgerhq/device-transport-kit-web-ble 1.2.0 → 1.3.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.
package/package.json CHANGED
@@ -1,18 +1,4 @@
1
1
  {
2
- "name": "@ledgerhq/device-transport-kit-web-ble",
3
- "version": "1.2.0",
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
- }
11
- },
12
- "files": [
13
- "./lib",
14
- "package.json"
15
- ],
16
2
  "dependencies": {
17
3
  "@sentry/minimal": "6.19.7",
18
4
  "purify-ts": "2.1.0",
@@ -23,30 +9,48 @@
23
9
  "@types/web-bluetooth": "^0.0.20",
24
10
  "rxjs": "7.8.2",
25
11
  "ts-node": "10.9.2",
26
- "@ledgerhq/device-management-kit": "0.9.0",
27
- "@ledgerhq/ldmk-tool": "0.0.1",
28
- "@ledgerhq/eslint-config-dsdk": "0.0.2",
29
- "@ledgerhq/prettier-config-dsdk": "0.0.2",
30
- "@ledgerhq/tsconfig-dsdk": "1.0.1",
31
- "@ledgerhq/vitest-config-dmk": "0.0.0"
12
+ "@ledgerhq/eslint-config-dsdk": "^0.0.2",
13
+ "@ledgerhq/prettier-config-dsdk": "^0.0.2",
14
+ "@ledgerhq/ldmk-tool": "^0.0.1",
15
+ "@ledgerhq/device-management-kit": "^0.13.0",
16
+ "@ledgerhq/tsconfig-dsdk": "^1.0.1",
17
+ "@ledgerhq/vitest-config-dmk": "^0.0.0"
18
+ },
19
+ "exports": {
20
+ ".": {
21
+ "import": "./lib/esm/index.js",
22
+ "types": "./lib/types/index.d.ts"
23
+ }
32
24
  },
25
+ "files": [
26
+ "./lib",
27
+ "package.json"
28
+ ],
29
+ "license": "Apache-2.0",
30
+ "name": "@ledgerhq/device-transport-kit-web-ble",
33
31
  "peerDependencies": {
34
32
  "rxjs": "7.8.2",
35
- "@ledgerhq/device-management-kit": "0.9.0"
33
+ "@ledgerhq/device-management-kit": "^0.13.0"
34
+ },
35
+ "private": false,
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://github.com/LedgerHQ/device-sdk-ts.git"
36
39
  },
40
+ "version": "1.3.1",
37
41
  "scripts": {
38
- "prebuild": "rimraf lib",
39
42
  "build": "pnpm ldmk-tool build --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json --platform web",
40
43
  "dev": "concurrently \"pnpm watch:builds\" \"pnpm watch:types\"",
41
- "watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json --platform web",
42
- "watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\"",
43
44
  "lint": "eslint",
44
45
  "lint:fix": "pnpm lint --fix",
46
+ "prebuild": "rimraf lib",
45
47
  "prettier": "prettier . --check",
46
48
  "prettier:fix": "prettier . --write",
47
- "typecheck": "tsc --noEmit",
48
49
  "test": "vitest run",
50
+ "test:coverage": "vitest run --coverage",
49
51
  "test:watch": "vitest",
50
- "test:coverage": "vitest run --coverage"
52
+ "typecheck": "tsc --noEmit",
53
+ "watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json --platform web",
54
+ "watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\""
51
55
  }
52
56
  }