@n8n/extension-sdk 0.10.0 → 0.12.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 (1) hide show
  1. package/package.json +6 -5
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@n8n/extension-sdk",
3
- "version": "0.10.0",
3
+ "version": "0.12.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
7
7
  "schema.json",
8
8
  "LICENSE",
9
9
  "README.md",
10
- "LICENSE_EE.md",
11
- "LICENSE.md"
10
+ "LICENSE.md",
11
+ "LICENSE_EE.md"
12
12
  ],
13
13
  "main": "./dist/index.cjs",
14
14
  "module": "./dist/index.mjs",
@@ -46,7 +46,7 @@
46
46
  "vue-tsc": "^2.2.8",
47
47
  "zod-to-json-schema": "3.23.3",
48
48
  "tsx": "^4.19.3",
49
- "@n8n/typescript-config": "1.4.0"
49
+ "@n8n/typescript-config": "1.6.0"
50
50
  },
51
51
  "license": "SEE LICENSE IN LICENSE.md",
52
52
  "dependencies": {
@@ -68,8 +68,9 @@
68
68
  "typecheck:frontend": "vue-tsc --noEmit --project tsconfig.frontend.json",
69
69
  "typecheck:backend": "tsc --noEmit --project tsconfig.backend.json",
70
70
  "build": "pnpm \"/^typecheck:.+/\" && pnpm clean && tsdown && pnpm create-json-schema",
71
+ "build:unchecked": "pnpm run build",
71
72
  "create-json-schema": "tsx scripts/create-json-schema.ts",
72
73
  "preview": "vite preview",
73
- "test": "jest"
74
+ "test": "jest --passWithNoTests"
74
75
  }
75
76
  }