@windycom/plugin-devtools 1.0.6 → 1.0.8
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/index.mjs +1 -1
- package/package.json +31 -2
package/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import fs from 'fs';
|
|
|
3
3
|
import assert from 'assert';
|
|
4
4
|
import MagicString from 'magic-string';
|
|
5
5
|
import { walk } from 'estree-walker';
|
|
6
|
-
|
|
6
|
+
import semver from 'semver';
|
|
7
7
|
|
|
8
8
|
const testLoadedPlugin = config => {
|
|
9
9
|
const { name, version, title, desktopUI, mobileUI, routerPath, icon } = config;
|
package/package.json
CHANGED
|
@@ -1,12 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windycom/plugin-devtools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Developer tools and TS declarations for developers of Windy Plugins.",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"module": "index.mjs",
|
|
7
7
|
"author": "Windyty, S.E.",
|
|
8
8
|
"license": "ISC",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"
|
|
10
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
11
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
12
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
13
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
14
|
+
"@types/geojson": "^7946.0.14",
|
|
15
|
+
"eslint-import-resolver-typescript": "^3.6.1",
|
|
16
|
+
"eslint-plugin-svelte": "^2.35.1",
|
|
17
|
+
"less": "^4.2.0",
|
|
18
|
+
"less-plugin-autoprefixer": "^2.1.0",
|
|
19
|
+
"rollup": "^4.9.6",
|
|
20
|
+
"rollup-plugin-cleanup": "^3.2.1",
|
|
21
|
+
"rollup-plugin-serve": "^1.1.1",
|
|
22
|
+
"rollup-plugin-svelte": "^7.1.6",
|
|
23
|
+
"rollup-plugin-swc3": "^0.11.0",
|
|
24
|
+
"semver": "^7.6.0",
|
|
25
|
+
"svelte": "^4.2.9",
|
|
26
|
+
"svelte-preprocess": "^5.1.3",
|
|
27
|
+
"svelte-preprocess-less": "^0.4.0",
|
|
28
|
+
"typescript": "^5.3.3",
|
|
29
|
+
"@types/d3": "^7.4.3",
|
|
30
|
+
"@types/rollup": "^0.54.0",
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^6.19.1",
|
|
32
|
+
"d3": "^7.8.5",
|
|
33
|
+
"eslint": "^8.56.0",
|
|
34
|
+
"eslint-config-standard-with-typescript": "^43.0.1",
|
|
35
|
+
"eslint-plugin-import": "^2.29.1",
|
|
36
|
+
"eslint-plugin-n": "^16.6.2",
|
|
37
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
38
|
+
"prettier": "^3.2.4",
|
|
39
|
+
"prettier-plugin-svelte": "^3.1.2"
|
|
11
40
|
}
|
|
12
41
|
}
|