@keystrokehq/screenshotone 0.1.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/README.md +17 -0
- package/dist/action.cjs +21 -0
- package/dist/action.cjs.map +1 -0
- package/dist/action.mjs +21 -0
- package/dist/action.mjs.map +1 -0
- package/dist/actions/get-usage.cjs +26 -0
- package/dist/actions/get-usage.cjs.map +1 -0
- package/dist/actions/get-usage.d.cts +9 -0
- package/dist/actions/get-usage.d.cts.map +1 -0
- package/dist/actions/get-usage.d.mts +9 -0
- package/dist/actions/get-usage.d.mts.map +1 -0
- package/dist/actions/get-usage.mjs +25 -0
- package/dist/actions/get-usage.mjs.map +1 -0
- package/dist/actions/index.cjs +11 -0
- package/dist/actions/index.d.cts +6 -0
- package/dist/actions/index.d.mts +6 -0
- package/dist/actions/index.mjs +6 -0
- package/dist/actions/list-devices.cjs +30 -0
- package/dist/actions/list-devices.cjs.map +1 -0
- package/dist/actions/list-devices.d.cts +9 -0
- package/dist/actions/list-devices.d.cts.map +1 -0
- package/dist/actions/list-devices.d.mts +9 -0
- package/dist/actions/list-devices.d.mts.map +1 -0
- package/dist/actions/list-devices.mjs +29 -0
- package/dist/actions/list-devices.mjs.map +1 -0
- package/dist/actions/take-animated-screenshot.cjs +82 -0
- package/dist/actions/take-animated-screenshot.cjs.map +1 -0
- package/dist/actions/take-animated-screenshot.d.cts +9 -0
- package/dist/actions/take-animated-screenshot.d.cts.map +1 -0
- package/dist/actions/take-animated-screenshot.d.mts +9 -0
- package/dist/actions/take-animated-screenshot.d.mts.map +1 -0
- package/dist/actions/take-animated-screenshot.mjs +81 -0
- package/dist/actions/take-animated-screenshot.mjs.map +1 -0
- package/dist/actions/take-bulk-screenshots.cjs +85 -0
- package/dist/actions/take-bulk-screenshots.cjs.map +1 -0
- package/dist/actions/take-bulk-screenshots.d.cts +9 -0
- package/dist/actions/take-bulk-screenshots.d.cts.map +1 -0
- package/dist/actions/take-bulk-screenshots.d.mts +9 -0
- package/dist/actions/take-bulk-screenshots.d.mts.map +1 -0
- package/dist/actions/take-bulk-screenshots.mjs +84 -0
- package/dist/actions/take-bulk-screenshots.mjs.map +1 -0
- package/dist/actions/take-screenshot.cjs +50 -0
- package/dist/actions/take-screenshot.cjs.map +1 -0
- package/dist/actions/take-screenshot.d.cts +9 -0
- package/dist/actions/take-screenshot.d.cts.map +1 -0
- package/dist/actions/take-screenshot.d.mts +9 -0
- package/dist/actions/take-screenshot.d.mts.map +1 -0
- package/dist/actions/take-screenshot.mjs +49 -0
- package/dist/actions/take-screenshot.mjs.map +1 -0
- package/dist/app.cjs +9 -0
- package/dist/app.cjs.map +1 -0
- package/dist/app.d.cts +5 -0
- package/dist/app.d.cts.map +1 -0
- package/dist/app.d.mts +5 -0
- package/dist/app.d.mts.map +1 -0
- package/dist/app.mjs +10 -0
- package/dist/app.mjs.map +1 -0
- package/dist/catalog.cjs +15 -0
- package/dist/catalog.cjs.map +1 -0
- package/dist/catalog.d.cts +14 -0
- package/dist/catalog.d.cts.map +1 -0
- package/dist/catalog.d.mts +14 -0
- package/dist/catalog.d.mts.map +1 -0
- package/dist/catalog.mjs +15 -0
- package/dist/catalog.mjs.map +1 -0
- package/dist/execute.cjs +18 -0
- package/dist/execute.cjs.map +1 -0
- package/dist/execute.mjs +18 -0
- package/dist/execute.mjs.map +1 -0
- package/dist/index.cjs +16 -0
- package/dist/index.d.cts +8 -0
- package/dist/index.d.mts +8 -0
- package/dist/index.mjs +9 -0
- package/package.json +49 -0
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_app = require("./app.cjs");
|
|
3
|
+
const require_catalog = require("./catalog.cjs");
|
|
4
|
+
const require_get_usage = require("./actions/get-usage.cjs");
|
|
5
|
+
const require_list_devices = require("./actions/list-devices.cjs");
|
|
6
|
+
const require_take_animated_screenshot = require("./actions/take-animated-screenshot.cjs");
|
|
7
|
+
const require_take_bulk_screenshots = require("./actions/take-bulk-screenshots.cjs");
|
|
8
|
+
const require_take_screenshot = require("./actions/take-screenshot.cjs");
|
|
9
|
+
require("./actions/index.cjs");
|
|
10
|
+
exports.screenshotone = require_app.screenshotone;
|
|
11
|
+
exports.screenshotoneCatalog = require_catalog.screenshotoneCatalog;
|
|
12
|
+
exports.screenshotoneGetUsage = require_get_usage.screenshotoneGetUsage;
|
|
13
|
+
exports.screenshotoneListDevices = require_list_devices.screenshotoneListDevices;
|
|
14
|
+
exports.screenshotoneTakeAnimatedScreenshot = require_take_animated_screenshot.screenshotoneTakeAnimatedScreenshot;
|
|
15
|
+
exports.screenshotoneTakeBulkScreenshots = require_take_bulk_screenshots.screenshotoneTakeBulkScreenshots;
|
|
16
|
+
exports.screenshotoneTakeScreenshot = require_take_screenshot.screenshotoneTakeScreenshot;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { screenshotoneGetUsage } from "./actions/get-usage.cjs";
|
|
2
|
+
import { screenshotoneListDevices } from "./actions/list-devices.cjs";
|
|
3
|
+
import { screenshotoneTakeAnimatedScreenshot } from "./actions/take-animated-screenshot.cjs";
|
|
4
|
+
import { screenshotoneTakeBulkScreenshots } from "./actions/take-bulk-screenshots.cjs";
|
|
5
|
+
import { screenshotoneTakeScreenshot } from "./actions/take-screenshot.cjs";
|
|
6
|
+
import { screenshotone } from "./app.cjs";
|
|
7
|
+
import { screenshotoneCatalog } from "./catalog.cjs";
|
|
8
|
+
export { screenshotone, screenshotoneCatalog, screenshotoneGetUsage, screenshotoneListDevices, screenshotoneTakeAnimatedScreenshot, screenshotoneTakeBulkScreenshots, screenshotoneTakeScreenshot };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { screenshotoneGetUsage } from "./actions/get-usage.mjs";
|
|
2
|
+
import { screenshotoneListDevices } from "./actions/list-devices.mjs";
|
|
3
|
+
import { screenshotoneTakeAnimatedScreenshot } from "./actions/take-animated-screenshot.mjs";
|
|
4
|
+
import { screenshotoneTakeBulkScreenshots } from "./actions/take-bulk-screenshots.mjs";
|
|
5
|
+
import { screenshotoneTakeScreenshot } from "./actions/take-screenshot.mjs";
|
|
6
|
+
import { screenshotone } from "./app.mjs";
|
|
7
|
+
import { screenshotoneCatalog } from "./catalog.mjs";
|
|
8
|
+
export { screenshotone, screenshotoneCatalog, screenshotoneGetUsage, screenshotoneListDevices, screenshotoneTakeAnimatedScreenshot, screenshotoneTakeBulkScreenshots, screenshotoneTakeScreenshot };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { screenshotone } from "./app.mjs";
|
|
2
|
+
import { screenshotoneCatalog } from "./catalog.mjs";
|
|
3
|
+
import { screenshotoneGetUsage } from "./actions/get-usage.mjs";
|
|
4
|
+
import { screenshotoneListDevices } from "./actions/list-devices.mjs";
|
|
5
|
+
import { screenshotoneTakeAnimatedScreenshot } from "./actions/take-animated-screenshot.mjs";
|
|
6
|
+
import { screenshotoneTakeBulkScreenshots } from "./actions/take-bulk-screenshots.mjs";
|
|
7
|
+
import { screenshotoneTakeScreenshot } from "./actions/take-screenshot.mjs";
|
|
8
|
+
import "./actions/index.mjs";
|
|
9
|
+
export { screenshotone, screenshotoneCatalog, screenshotoneGetUsage, screenshotoneListDevices, screenshotoneTakeAnimatedScreenshot, screenshotoneTakeBulkScreenshots, screenshotoneTakeScreenshot };
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keystrokehq/screenshotone",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public",
|
|
6
|
+
"registry": "https://registry.npmjs.org"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/keystrokehq/keystroke.git",
|
|
11
|
+
"directory": "packages/integrations/screenshotone"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "./dist/index.cjs",
|
|
19
|
+
"module": "./dist/index.mjs",
|
|
20
|
+
"types": "./dist/index.d.mts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.mts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"require": "./dist/index.cjs"
|
|
26
|
+
},
|
|
27
|
+
"./actions": {
|
|
28
|
+
"types": "./dist/actions/index.d.mts",
|
|
29
|
+
"import": "./dist/actions/index.mjs",
|
|
30
|
+
"require": "./dist/actions/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@keystrokehq/keystroke": "^0.1.4",
|
|
35
|
+
"zod": "^4.4.3"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@keystrokehq/keystroke": "link:../../keystroke",
|
|
39
|
+
"@types/node": "^25.9.1",
|
|
40
|
+
"tsdown": "^0.22.0",
|
|
41
|
+
"typescript": "^6.0.3",
|
|
42
|
+
"zod": "^4.4.3"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsdown",
|
|
46
|
+
"dev": "tsdown --watch --no-clean",
|
|
47
|
+
"typecheck": "tsc --noEmit"
|
|
48
|
+
}
|
|
49
|
+
}
|