@knime/scripting-editor 0.0.117 → 0.0.118

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/dist/main.js +8868 -8898
  2. package/package.json +24 -24
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knime/scripting-editor",
3
3
  "type": "module",
4
- "version": "0.0.117",
4
+ "version": "0.0.118",
5
5
  "description": "Shared Scripting Editor components for KNIME",
6
6
  "repository": {
7
7
  "type": "git",
@@ -10,27 +10,9 @@
10
10
  },
11
11
  "author": "KNIME AG, Zurich, Switzerland",
12
12
  "license": "See the file license.txt",
13
- "scripts": {
14
- "build": "run-p type-check build-only",
15
- "build-only": "vite build",
16
- "build-watch": "vite build --minify=false --watch",
17
- "demo": "vite --config vite.demo.config.ts",
18
- "test:unit": "vitest",
19
- "type-check": "vue-tsc -p tsconfig.vitest.json",
20
- "format": "prettier --cache --write .",
21
- "format:check": "prettier --cache --check .",
22
- "lint": "run-p 'lint:* -- --fix'",
23
- "lint:js": "eslint . --cache --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
24
- "lint:css": "stylelint --cache '**/*.{css,vue}'",
25
- "ci:lint-format": "run-p ci:lint:* format:check -c",
26
- "ci:lint:js": "npm run lint:js && npm run lint:js -- -f json -o test-results/eslint.json",
27
- "ci:lint:css": "npm run lint:css -- -f json -o test-results/stylelint.json",
28
- "coverage": "vitest run --coverage",
29
- "postinstall": "license-check -c"
30
- },
31
13
  "dependencies": {
32
- "@knime/kds-components": "catalog:",
33
- "@knime/kds-styles": "catalog:",
14
+ "@knime/kds-components": "0.4.0",
15
+ "@knime/kds-styles": "0.4.0",
34
16
  "@knime/styles": "1.15.0",
35
17
  "@knime/ui-extension-renderer": "2.4.0",
36
18
  "@knime/utils": "1.8.0",
@@ -75,14 +57,14 @@
75
57
  "vite-plugin-dts": "4.5.4",
76
58
  "vite-svg-loader": "5.1.0",
77
59
  "vitest": "2.1.9",
78
- "vue": "catalog:",
60
+ "vue": "3.5.18",
79
61
  "vue-tsc": "3.0.4"
80
62
  },
81
63
  "peerDependencies": {
82
64
  "@knime/components": "1.43.0",
83
65
  "@knime/ui-extension-service": "2.6.0",
84
66
  "monaco-editor": "0.45.x",
85
- "vue": "catalog:"
67
+ "vue": "3.5.18"
86
68
  },
87
69
  "files": [
88
70
  "dist"
@@ -99,5 +81,23 @@
99
81
  },
100
82
  "engines": {
101
83
  "node": "24.x"
84
+ },
85
+ "scripts": {
86
+ "build": "run-p type-check build-only",
87
+ "build-only": "vite build",
88
+ "build-watch": "vite build --minify=false --watch",
89
+ "demo": "vite --config vite.demo.config.ts",
90
+ "test:unit": "vitest",
91
+ "type-check": "vue-tsc -p tsconfig.vitest.json",
92
+ "format": "prettier --cache --write .",
93
+ "format:check": "prettier --cache --check .",
94
+ "lint": "run-p 'lint:* -- --fix'",
95
+ "lint:js": "eslint . --cache --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
96
+ "lint:css": "stylelint --cache '**/*.{css,vue}'",
97
+ "ci:lint-format": "run-p ci:lint:* format:check -c",
98
+ "ci:lint:js": "npm run lint:js && npm run lint:js -- -f json -o test-results/eslint.json",
99
+ "ci:lint:css": "npm run lint:css -- -f json -o test-results/stylelint.json",
100
+ "coverage": "vitest run --coverage",
101
+ "postinstall": "license-check -c"
102
102
  }
103
- }
103
+ }