@imgly/plugin-ai-sticker-generation-web 0.2.12 → 0.2.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imgly/plugin-ai-sticker-generation-web",
3
- "version": "0.2.12",
3
+ "version": "0.2.14",
4
4
  "description": "AI sticker generation plugin for the CE.SDK editor",
5
5
  "keywords": [
6
6
  "CE.SDK",
@@ -42,6 +42,24 @@
42
42
  "dist/",
43
43
  "bin/"
44
44
  ],
45
+ "dependencies": {
46
+ "@imgly/plugin-ai-generation-web": "0.2.14"
47
+ },
48
+ "devDependencies": {
49
+ "@fal-ai/client": "^1.3.0",
50
+ "@types/ndarray": "^1.0.14",
51
+ "chalk": "^5.3.0",
52
+ "concurrently": "^8.2.2",
53
+ "esbuild": "^0.19.11",
54
+ "eslint": "^8.51.0",
55
+ "lodash-es": "^4.17.21",
56
+ "openapi-types": "^12.1.3",
57
+ "typescript": "^5.3.3",
58
+ "@imgly/plugin-utils": "0.0.0"
59
+ },
60
+ "peerDependencies": {
61
+ "@cesdk/cesdk-js": "^1.49.1"
62
+ },
45
63
  "scripts": {
46
64
  "start": "npm run watch",
47
65
  "clean": "pnpm exec rimraf dist",
@@ -51,29 +69,12 @@
51
69
  "dev": "SKIP_DTS=true node scripts/watch.mjs",
52
70
  "dev:wait": "node ../../scripts/dev-wait.mjs",
53
71
  "dev:types": "tsc --emitDeclarationOnly --watch --preserveWatchOutput",
54
- "publish:latest": "pnpm run build && npm publish --tag latest --access public",
55
- "publish:next": "pnpm run build && npm publish --tag next --access public",
72
+ "publish:latest": "pnpm run build && pnpm publish --tag latest --access public --no-git-checks",
73
+ "publish:next": "pnpm run build && pnpm publish --tag next --access public --no-git-checks",
56
74
  "check:all": "concurrently -n lint,type,pretty \"pnpm run check:lint\" \"pnpm run check:types\" \"pnpm run check:pretty\"",
57
75
  "check:lint": "eslint --max-warnings 0 './src/**/*.{ts,tsx}'",
58
76
  "check:pretty": "prettier --list-different './src/**/*.{ts,tsx}'",
59
77
  "check:types": "tsc --noEmit",
60
78
  "types:create": "tsc --emitDeclarationOnly"
61
- },
62
- "dependencies": {},
63
- "devDependencies": {
64
- "@imgly/plugin-ai-generation-web": "workspace:*",
65
- "@fal-ai/client": "^1.3.0",
66
- "@imgly/plugin-utils": "workspace:*",
67
- "@types/ndarray": "^1.0.14",
68
- "chalk": "^5.3.0",
69
- "concurrently": "^8.2.2",
70
- "esbuild": "^0.19.11",
71
- "eslint": "^8.51.0",
72
- "lodash-es": "^4.17.21",
73
- "openapi-types": "^12.1.3",
74
- "typescript": "^5.3.3"
75
- },
76
- "peerDependencies": {
77
- "@cesdk/cesdk-js": "^1.49.1"
78
79
  }
79
80
  }