@8bitbish/screenshot-service 1.0.0 → 1.0.2

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,13 +1,21 @@
1
1
  {
2
2
  "name": "@8bitbish/screenshot-service",
3
- "version": "1.0.0",
4
- "description": "Take screenshots and fetch recordings from connected iPhone and Android devices",
3
+ "version": "1.0.2",
4
+ "description": "Capture screenshots and recordings from connected iPhone and Android devices, with a built-in visual setup wizard.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
8
8
  ".": {
9
9
  "require": "./dist/index.js",
10
10
  "types": "./dist/index.d.ts"
11
+ },
12
+ "./setup": {
13
+ "require": "./dist/setup/index.js",
14
+ "types": "./dist/setup/index.d.ts"
15
+ },
16
+ "./wizard": {
17
+ "require": "./dist/wizard/index.js",
18
+ "types": "./dist/wizard/index.d.ts"
11
19
  }
12
20
  },
13
21
  "bin": {
@@ -18,7 +26,7 @@
18
26
  "access": "public"
19
27
  },
20
28
  "scripts": {
21
- "build": "tsc",
29
+ "build": "tsc && node scripts/copy-assets.js",
22
30
  "prepare": "npm run build",
23
31
  "clean": "rm -rf dist"
24
32
  },
@@ -26,5 +34,22 @@
26
34
  "@types/node": "^20.0.0",
27
35
  "ts-node": "^10.9.0",
28
36
  "typescript": "^5.4.0"
29
- }
37
+ },
38
+ "peerDependencies": {
39
+ "electron": ">=28"
40
+ },
41
+ "peerDependenciesMeta": {
42
+ "electron": {
43
+ "optional": true
44
+ }
45
+ },
46
+ "keywords": [
47
+ "iphone",
48
+ "android",
49
+ "screenshot",
50
+ "recording",
51
+ "pymobiledevice3",
52
+ "adb"
53
+ ],
54
+ "license": "MIT"
30
55
  }