@imgly/plugin-ai-generation-web
Version:
AI generation plugin for the CE.SDK editor
68 lines (67 loc) • 2.33 kB
JSON
{
"name": "@imgly/plugin-ai-generation-web",
"version": "0.2.4",
"description": "AI generation plugin for the CE.SDK editor",
"keywords": ["CE.SDK", "plugin", "AI", "ai generation"],
"repository": {
"type": "git",
"url": "git+https://github.com/imgly/plugins.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "IMG.LY GmbH",
"email": "support@img.ly",
"url": "https://img.ly"
},
"bugs": {
"email": "support@img.ly"
},
"source": "./src/index.ts",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"homepage": "https://img.ly/products/creative-sdk",
"files": ["LICENSE.md", "README.md", "CHANGELOG.md", "dist/", "bin/"],
"scripts": {
"start": "pnpm run watch",
"clean": "pnpm exec rimraf dist",
"purge": "pnpm exec rimraf node_modules",
"build": "pnpm run clean && pnpm _syncPnpm && pnpm exec node scripts/build.mjs",
"publish:latest": "pnpm run build && npm publish --tag latest --access public",
"publish:next": "pnpm run build && npm publish --tag next --access public",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "pnpm --filter \"${npm_package_name}^...\" --parallel run dev:wait && node scripts/watch.mjs",
"dev:wait": "pnpm exec wait-on ./dist/index.mjs ./dist/index.d.ts --window 250 --timeout 60000",
"check:all": "concurrently -n lint,type,pretty \"pnpm run check:lint\" \"pnpm run check:types\" \"pnpm run check:pretty\"",
"check:lint": "eslint --max-warnings 0 './src/**/*.{ts,tsx}'",
"check:pretty": "prettier --list-different './src/**/*.{ts,tsx}'",
"check:types": "tsc --noEmit",
"types:create": "tsc --emitDeclarationOnly",
"_syncPnpm": "pnpm sync-dependencies-meta-injected"
},
"devDependencies": {
"@cesdk/cesdk-js": "^1.49.1",
"@imgly/plugin-utils": "workspace:*",
"esbuild": "^0.19.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"openapi-types": "^12.1.3"
},
"dependenciesMeta": {
"@imgly/plugin-utils": {
"injected": true
}
},
"peerDependencies": {
"@cesdk/cesdk-js": "^1.49.1"
}
}