@n8n/extension-sdk 0.3.0 → 0.4.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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/schema.json +6 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n8n/extension-sdk",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -36,10 +36,10 @@
36
36
  "vue-router": "^4.5.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@vitejs/plugin-vue": "^5.2.1",
39
+ "@vitejs/plugin-vue": "^5.2.4",
40
40
  "@vue/tsconfig": "^0.7.0",
41
41
  "rimraf": "^6.0.1",
42
- "vite": "^6.2.0",
42
+ "vite": "^6.3.5",
43
43
  "vue": "^3.5.13",
44
44
  "vue-router": "^4.5.0",
45
45
  "vue-tsc": "^2.2.8",
package/schema.json CHANGED
@@ -32,10 +32,7 @@
32
32
  "type": "string"
33
33
  }
34
34
  },
35
- "required": [
36
- "backend",
37
- "frontend"
38
- ],
35
+ "required": ["backend", "frontend"],
39
36
  "additionalProperties": false
40
37
  },
41
38
  "minSDKVersion": {
@@ -57,10 +54,7 @@
57
54
  }
58
55
  }
59
56
  },
60
- "required": [
61
- "frontend",
62
- "backend"
63
- ],
57
+ "required": ["frontend", "backend"],
64
58
  "additionalProperties": false
65
59
  },
66
60
  "events": {
@@ -82,21 +76,15 @@
82
76
  "type": "string"
83
77
  }
84
78
  },
85
- "required": [
86
- "header"
87
- ],
79
+ "required": ["header"],
88
80
  "additionalProperties": false
89
81
  }
90
82
  },
91
- "required": [
92
- "workflows"
93
- ],
83
+ "required": ["workflows"],
94
84
  "additionalProperties": false
95
85
  }
96
86
  },
97
- "required": [
98
- "views"
99
- ],
87
+ "required": ["views"],
100
88
  "additionalProperties": false
101
89
  }
102
90
  },
@@ -116,4 +104,4 @@
116
104
  "additionalProperties": false,
117
105
  "title": "N8nExtensionSchema",
118
106
  "$schema": "http://json-schema.org/draft-07/schema#"
119
- }
107
+ }