@imgly/plugin-vectorizer-web 1.0.1 → 1.68.0-rc.1
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/README.md +5 -82
- package/dist/.tsbuildinfo +1 -0
- package/dist/index.d.ts +1 -3
- package/dist/index.mjs +16 -1
- package/dist/index.mjs.map +4 -4
- package/dist/plugin.d.ts +1 -1
- package/package.json +25 -27
package/dist/plugin.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ export interface PluginConfiguration {
|
|
|
18
18
|
*/
|
|
19
19
|
timeout?: number;
|
|
20
20
|
}
|
|
21
|
-
declare const _default: (pluginConfiguration?: PluginConfiguration) => Omit<EditorPlugin,
|
|
21
|
+
declare const _default: (pluginConfiguration?: PluginConfiguration) => Omit<EditorPlugin, "name" | "version">;
|
|
22
22
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imgly/plugin-vectorizer-web",
|
|
3
|
-
"version": "1.0.1",
|
|
3
|
+
"version": "1.68.0-rc.1",
|
|
4
4
|
"description": "Vectorizer plugin for the CE.SDK editor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CE.SDK",
|
|
@@ -9,10 +9,6 @@
|
|
|
9
9
|
"client-side",
|
|
10
10
|
"data-privacy"
|
|
11
11
|
],
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "git+https://github.com/imgly/plugin-vectorizer-web.git"
|
|
15
|
-
},
|
|
16
12
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
17
13
|
"author": {
|
|
18
14
|
"name": "IMG.LY GmbH",
|
|
@@ -31,7 +27,7 @@
|
|
|
31
27
|
"types": "./dist/index.d.ts"
|
|
32
28
|
}
|
|
33
29
|
},
|
|
34
|
-
"homepage": "https://img.ly/
|
|
30
|
+
"homepage": "https://img.ly/docs/cesdk/",
|
|
35
31
|
"files": [
|
|
36
32
|
"LICENSE.md",
|
|
37
33
|
"README.md",
|
|
@@ -39,33 +35,35 @@
|
|
|
39
35
|
"dist/",
|
|
40
36
|
"bin/"
|
|
41
37
|
],
|
|
42
|
-
"scripts": {
|
|
43
|
-
"start": "npm run watch",
|
|
44
|
-
"clean": "npx rimraf dist",
|
|
45
|
-
"build": "npm run clean && node scripts/build.mjs",
|
|
46
|
-
"dev": "node scripts/watch.mjs",
|
|
47
|
-
"dev:types": "tsc --emitDeclarationOnly --watch --preserveWatchOutput",
|
|
48
|
-
"publish:latest": "npm run build && npm publish --tag latest --access public",
|
|
49
|
-
"publish:next": "npm run build && npm publish --tag next --access public",
|
|
50
|
-
"check:all": "concurrently -n lint,type,pretty \"yarn check:lint\" \"yarn check:types\" \"yarn check:pretty\"",
|
|
51
|
-
"check:lint": "eslint --max-warnings 0 './src/**/*.{ts,tsx}'",
|
|
52
|
-
"check:pretty": "prettier --list-different './src/**/*.{ts,tsx}'",
|
|
53
|
-
"check:types": "tsc --noEmit",
|
|
54
|
-
"types:create": "tsc --emitDeclarationOnly"
|
|
55
|
-
},
|
|
56
38
|
"devDependencies": {
|
|
57
|
-
"
|
|
39
|
+
"@types/lodash-es": "^4.17.12",
|
|
40
|
+
"chalk": "^5.4.1",
|
|
58
41
|
"concurrently": "^8.2.2",
|
|
59
|
-
"esbuild": "^0.19.
|
|
60
|
-
"eslint": "^8.
|
|
61
|
-
"typescript": "^5.3.3",
|
|
42
|
+
"esbuild": "^0.19.12",
|
|
43
|
+
"eslint": "^8.57.1",
|
|
62
44
|
"lodash-es": "^4.17.21",
|
|
63
|
-
"
|
|
45
|
+
"typescript": "^5.7.3",
|
|
46
|
+
"@imgly/plugin-utils": "0.0.0"
|
|
64
47
|
},
|
|
65
48
|
"peerDependencies": {
|
|
66
|
-
"@cesdk/cesdk-js": "
|
|
49
|
+
"@cesdk/cesdk-js": "1.68.0-rc.1"
|
|
67
50
|
},
|
|
68
51
|
"dependencies": {
|
|
69
52
|
"@imgly/vectorizer": "1.0.0"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"start": "pnpm run watch",
|
|
56
|
+
"clean": "pnpm exec rimraf dist",
|
|
57
|
+
"build": "pnpm run clean && pnpm exec node scripts/build.mjs",
|
|
58
|
+
"dev": "SKIP_DTS=true node scripts/watch.mjs",
|
|
59
|
+
"dev:wait": "node ../../scripts/dev-wait.mjs",
|
|
60
|
+
"dev:types": "tsc --emitDeclarationOnly --watch --preserveWatchOutput",
|
|
61
|
+
"publish:latest": "pnpm run build && pnpm publish --tag latest --access public",
|
|
62
|
+
"publish:next": "pnpm run build && pnpm publish --tag next --access public",
|
|
63
|
+
"check:all": "concurrently -n lint,type,pretty \"pnpm run check:lint\" \"pnpm run check:types\" \"pnpm run check:pretty\"",
|
|
64
|
+
"check:lint": "eslint --max-warnings 0 './src/**/*.{ts,tsx}'",
|
|
65
|
+
"check:pretty": "prettier --list-different './src/**/*.{ts,tsx}'",
|
|
66
|
+
"check:types": "tsc --noEmit",
|
|
67
|
+
"types:create": "tsc --emitDeclarationOnly"
|
|
70
68
|
}
|
|
71
|
-
}
|
|
69
|
+
}
|