@sudobility/tapayoka_bluetooth 0.0.15 → 0.0.17

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.
Files changed (1) hide show
  1. package/package.json +34 -35
package/package.json CHANGED
@@ -1,29 +1,28 @@
1
1
  {
2
2
  "name": "@sudobility/tapayoka_bluetooth",
3
- "version": "0.0.15",
4
- "description": "Platform-agnostic BLE communication library for Tapayoka devices",
3
+ "version": "0.0.17",
4
+ "author": "Sudobility",
5
5
  "main": "./dist/index.js",
6
- "types": "./dist/index.d.ts",
6
+ "devDependencies": {
7
+ "@eslint/js": "^9.39.2",
8
+ "@types/web-bluetooth": "^0.0.21",
9
+ "@typescript-eslint/eslint-plugin": "^8.50.0",
10
+ "@typescript-eslint/parser": "^8.50.0",
11
+ "eslint": "^9.39.2",
12
+ "eslint-config-prettier": "^10.1.8",
13
+ "eslint-plugin-prettier": "^5.5.5",
14
+ "globals": "^16.5.0",
15
+ "prettier": "^3.7.4",
16
+ "typescript": "^5.9.3",
17
+ "vitest": "^4.0.16"
18
+ },
7
19
  "exports": {
8
20
  ".": {
9
21
  "import": "./dist/index.js",
10
22
  "types": "./dist/index.d.ts"
11
23
  }
12
24
  },
13
- "scripts": {
14
- "build": "tsc -p tsconfig.esm.json",
15
- "clean": "rm -rf dist",
16
- "dev": "bunx tsc --watch",
17
- "typecheck": "bunx tsc --noEmit",
18
- "lint": "bunx eslint src/",
19
- "lint:fix": "bunx eslint src/ --fix",
20
- "format": "bunx prettier --write \"src/**/*.ts\"",
21
- "format:check": "bunx prettier --check \"src/**/*.ts\"",
22
- "test": "vitest run",
23
- "test:watch": "vitest",
24
- "verify": "bun run typecheck && bun run lint && bun run build",
25
- "prepublishOnly": "bun run clean && bun run verify"
26
- },
25
+ "description": "Platform-agnostic BLE communication library for Tapayoka devices",
27
26
  "files": [
28
27
  "dist/**/*"
29
28
  ],
@@ -35,26 +34,26 @@
35
34
  "iot",
36
35
  "websocket"
37
36
  ],
38
- "author": "Sudobility",
39
37
  "license": "BUSL-1.1",
40
- "peerDependencies": {
41
- "@sudobility/tapayoka_types": "^0.0.27"
42
- },
43
- "devDependencies": {
44
- "@eslint/js": "^9.39.2",
45
- "@sudobility/tapayoka_types": "^0.0.27",
46
- "@types/web-bluetooth": "^0.0.21",
47
- "@typescript-eslint/eslint-plugin": "^8.50.0",
48
- "@typescript-eslint/parser": "^8.50.0",
49
- "eslint": "^9.39.2",
50
- "eslint-config-prettier": "^10.1.8",
51
- "eslint-plugin-prettier": "^5.5.5",
52
- "globals": "^16.5.0",
53
- "prettier": "^3.7.4",
54
- "typescript": "^5.9.3",
55
- "vitest": "^4.0.16"
56
- },
57
38
  "publishConfig": {
58
39
  "access": "public"
40
+ },
41
+ "scripts": {
42
+ "build": "tsc -p tsconfig.esm.json",
43
+ "clean": "rm -rf dist",
44
+ "dev": "bunx tsc --watch",
45
+ "typecheck": "bunx tsc --noEmit",
46
+ "lint": "bunx eslint src/",
47
+ "lint:fix": "bunx eslint src/ --fix",
48
+ "format": "bunx prettier --write \"src/**/*.ts\"",
49
+ "format:check": "bunx prettier --check \"src/**/*.ts\"",
50
+ "test": "vitest run",
51
+ "test:watch": "vitest",
52
+ "verify": "bun run typecheck && bun run lint && bun run build",
53
+ "prepublishOnly": "bun run clean && bun run verify"
54
+ },
55
+ "types": "./dist/index.d.ts",
56
+ "dependencies": {
57
+ "@sudobility/tapayoka_types": "0.0.30"
59
58
  }
60
59
  }