@imgly/plugin-ai-sticker-generation-web 0.2.6 → 0.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imgly/plugin-ai-sticker-generation-web",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "AI sticker generation plugin for the CE.SDK editor",
5
5
  "keywords": [
6
6
  "CE.SDK",
@@ -46,10 +46,10 @@
46
46
  "start": "npm run watch",
47
47
  "clean": "pnpm exec rimraf dist",
48
48
  "purge": "pnpm exec rimraf node_modules",
49
- "build": "pnpm run clean && pnpm _syncPnpm && pnpm exec node scripts/build.mjs",
49
+ "build": "pnpm run clean && pnpm exec node scripts/build.mjs",
50
50
  "test": "echo No tests",
51
- "dev": "pnpm --filter \"${npm_package_name}^...\" --parallel run dev:wait && pnpm exec concurrently 'node scripts/watch.mjs' 'pnpm _syncPnpm --watch' --names 'build,sync deps'",
52
- "dev:wait": "pnpm exec wait-on ./dist/index.mjs ./dist/index.d.ts ./dist/fal-ai/index.mjs ./dist/fal-ai/index.d.ts --window 250 --timeout 60000",
51
+ "dev": "SKIP_DTS=true node scripts/watch.mjs",
52
+ "dev:wait": "node ../../scripts/dev-wait.mjs",
53
53
  "dev:types": "tsc --emitDeclarationOnly --watch --preserveWatchOutput",
54
54
  "publish:latest": "pnpm run build && npm publish --tag latest --access public",
55
55
  "publish:next": "pnpm run build && npm publish --tag next --access public",
@@ -57,11 +57,12 @@
57
57
  "check:lint": "eslint --max-warnings 0 './src/**/*.{ts,tsx}'",
58
58
  "check:pretty": "prettier --list-different './src/**/*.{ts,tsx}'",
59
59
  "check:types": "tsc --noEmit",
60
- "types:create": "tsc --emitDeclarationOnly",
61
- "_syncPnpm": "pnpm sync-dependencies-meta-injected"
60
+ "types:create": "tsc --emitDeclarationOnly"
62
61
  },
62
+ "dependencies": {},
63
63
  "devDependencies": {
64
64
  "@imgly/plugin-ai-generation-web": "workspace:*",
65
+ "@fal-ai/client": "^1.3.0",
65
66
  "@imgly/plugin-utils": "workspace:*",
66
67
  "@types/ndarray": "^1.0.14",
67
68
  "chalk": "^5.3.0",
@@ -72,18 +73,7 @@
72
73
  "openapi-types": "^12.1.3",
73
74
  "typescript": "^5.3.3"
74
75
  },
75
- "dependenciesMeta": {
76
- "@imgly/plugin-utils": {
77
- "injected": true
78
- },
79
- "@imgly/plugin-ai-generation-web": {
80
- "injected": true
81
- }
82
- },
83
76
  "peerDependencies": {
84
77
  "@cesdk/cesdk-js": "^1.49.1"
85
- },
86
- "dependencies": {
87
- "@fal-ai/client": "^1.3.0"
88
78
  }
89
79
  }