UNPKG

iframe-bridge-sdk

Version:

Universal iframe communication SDK - unified package for host and guest applications

80 lines (79 loc) 1.94 kB
{ "name": "iframe-bridge-sdk", "version": "0.0.1", "description": "Universal iframe communication SDK - unified package for host and guest applications", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" } }, "files": [ "dist", "README.md" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "clean": "rm -rf dist", "prebuild": "npm run clean", "prepublishOnly": "npm run build", "pack": "npm pack", "link": "npm link", "unlink": "npm unlink", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\"", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "type-check": "tsc --noEmit", "prepare": "npm run build" }, "keywords": [ "iframe", "bridge", "communication", "sdk", "host", "guest", "typescript", "javascript", "micro-frontend", "postmessage" ], "author": "Devo Team", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/devo/iframe-bridge-sdk.git" }, "bugs": { "url": "https://github.com/devo/iframe-bridge-sdk/issues" }, "homepage": "https://github.com/devo/iframe-bridge-sdk#readme", "engines": { "node": ">=14.0.0", "npm": ">=6.0.0" }, "dependencies": {}, "devDependencies": { "typescript": "^5.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "prettier": "^3.0.0", "jest": "^29.0.0", "@types/jest": "^29.0.0", "ts-jest": "^29.0.0" }, "peerDependencies": {}, "sideEffects": false, "publishConfig": { "access": "public" } }