n8n-nodes-klib-midscene 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.
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="48" height="48" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="3" width="20" height="14" rx="2" ry="2" stroke="red"/><line x1="8" y1="21" x2="16" y2="21" stroke="#333"/><line x1="12" y1="17" x2="12" y2="21" stroke="#333"/></svg>
Binary file
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "n8n-nodes-klib-midscene",
3
+ "version": "0.1.0",
4
+ "description": "n8n nodes for Midscene.js integration",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "midscene",
8
+ "ui-automation"
9
+ ],
10
+ "license": "MIT",
11
+ "author": {
12
+ "name": "klib",
13
+ "email": "dev@klib.io"
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "n8n": {
19
+ "n8nNodesApiVersion": 1,
20
+ "nodes": [
21
+ "dist/nodes/MidscenePC/MidscenePC.node.js",
22
+ "dist/nodes/MidsceneBrowser/MidsceneBrowser.node.js"
23
+ ]
24
+ },
25
+ "dependencies": {
26
+ "@midscene/core": "^1.2.0",
27
+ "@midscene/web": "^1.2.0",
28
+ "dotenv": "^17.2.3",
29
+ "js-yaml": "^4.1.0",
30
+ "klib-midscene-pc": "^1.0.6"
31
+ },
32
+ "devDependencies": {
33
+ "@types/js-yaml": "^4.0.9",
34
+ "@types/node": "^18",
35
+ "@typescript-eslint/eslint-plugin": "^8.52.0",
36
+ "@typescript-eslint/parser": "^8.52.0",
37
+ "esbuild": "^0.27.2",
38
+ "eslint": "^8.56.0",
39
+ "eslint-plugin-n8n-nodes-base": "^1.16.1",
40
+ "gulp": "^4.0.2",
41
+ "gulp-rename": "^2.0.0",
42
+ "n8n-workflow": "*",
43
+ "typescript": "^5.3.3"
44
+ },
45
+ "peerDependencies": {
46
+ "n8n-core": "*",
47
+ "n8n-workflow": "*"
48
+ },
49
+ "scripts": {
50
+ "build": "node build.js && gulp build:icons",
51
+ "dev": "tsc --watch",
52
+ "lint": "eslint nodes --ext .ts",
53
+ "lintfix": "eslint nodes --ext .ts --fix"
54
+ }
55
+ }