@elizaos/capacitor-screencapture 1.0.0

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 ADDED
@@ -0,0 +1,84 @@
1
+ {
2
+ "name": "@elizaos/capacitor-screencapture",
3
+ "version": "1.0.0",
4
+ "description": "Captures screenshots and records the screen across web, mobile, and desktop.",
5
+ "keywords": [
6
+ "screen-capture",
7
+ "screenshots",
8
+ "screen-recording",
9
+ "media"
10
+ ],
11
+ "main": "./dist/plugin.cjs.js",
12
+ "module": "./dist/esm/index.js",
13
+ "types": "./dist/esm/index.d.ts",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/esm/index.d.ts",
17
+ "import": "./dist/esm/index.js",
18
+ "require": "./dist/plugin.cjs.js"
19
+ },
20
+ "./package.json": "./package.json"
21
+ },
22
+ "unpkg": "dist/plugin.js",
23
+ "files": [
24
+ "android/src/main/",
25
+ "android/build.gradle",
26
+ "dist/",
27
+ "ios/Sources/",
28
+ "ios/Plugin.xcodeproj/",
29
+ "electrobun/",
30
+ "*.podspec"
31
+ ],
32
+ "author": "elizaOS",
33
+ "license": "MIT",
34
+ "dependencies": {
35
+ "@elizaos/app-core": "2.0.0-alpha.537"
36
+ },
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/elizaOS/eliza"
40
+ },
41
+ "scripts": {
42
+ "build": "npm run clean && tsc && rollup -c rollup.config.mjs",
43
+ "clean": "rimraf ./dist",
44
+ "prepublishOnly": "npm run build",
45
+ "watch": "tsc --watch"
46
+ },
47
+ "devDependencies": {
48
+ "@capacitor/android": "^8.0.0",
49
+ "@capacitor/core": "^8.3.1",
50
+ "@capacitor/ios": "^8.0.0",
51
+ "@rollup/plugin-node-resolve": "^16.0.0",
52
+ "rimraf": "^6.0.0",
53
+ "rollup": "^4.60.2",
54
+ "typescript": "^6.0.0"
55
+ },
56
+ "peerDependencies": {
57
+ "@capacitor/core": "^8.3.1"
58
+ },
59
+ "publishConfig": {
60
+ "access": "public"
61
+ },
62
+ "capacitor": {
63
+ "ios": {
64
+ "src": "ios",
65
+ "podName": "ElizaCapacitorScreenCapture"
66
+ },
67
+ "android": {
68
+ "src": "android"
69
+ }
70
+ },
71
+ "elizaos": {
72
+ "platforms": [
73
+ "browser",
74
+ "node"
75
+ ],
76
+ "runtime": "both",
77
+ "platformDetails": {
78
+ "browser": "Full support via Screen Capture API (getDisplayMedia) for screenshots and screen recording with pause/resume",
79
+ "node": "Full support via Electrobun native screen capture APIs",
80
+ "ios": true,
81
+ "android": true
82
+ }
83
+ }
84
+ }