tiptap-extension-iframely
Version:
A Tiptap extension for adding embedded content with Iframely.
77 lines (76 loc) • 1.92 kB
JSON
{
"name": "tiptap-extension-iframely",
"version": "1.1.0",
"description": "A Tiptap extension for adding embedded content with Iframely.",
"keywords": [
"extension",
"iframely",
"tiptap"
],
"homepage": "https://github.com/haydenbleasel/tiptap-extensions/tree/main/packages/iframely#readme",
"bugs": {
"url": "https://github.com/haydenbleasel/tiptap-extensions/issues"
},
"license": "ISC",
"author": "Hayden Bleasel <hello@haydenbleasel.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/haydenbleasel/tiptap-extensions.git",
"directory": "packages/iframely"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./server": {
"import": {
"types": "./dist/server.d.mts",
"default": "./dist/server.mjs"
},
"require": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
}
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepublishOnly": "bun run build",
"build": "tsup",
"dev": "tsup --watch",
"test": "bun test",
"typecheck": "tsgo --noEmit"
},
"devDependencies": {
"@tiptap/core": "^3.22.5",
"@tiptap/pm": "^3.22.5",
"@tiptap/react": "^3.22.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"peerDependencies": {
"@tiptap/core": "^3.0.0",
"@tiptap/pm": "^3.0.0",
"@tiptap/react": "^3.0.0",
"react": "^18.3.1 || ^19.0.0",
"react-dom": "^18.3.1 || ^19.0.0"
}
}