Files
welshman/packages/editor/package.json
T
2025-02-10 16:25:43 -08:00

50 lines
1.4 KiB
JSON

{
"name": "@welshman/editor",
"version": "0.0.14",
"author": "hodlbod",
"license": "MIT",
"description": "A batteries-included nostr editor.",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"build"
],
"types": "./build/src/index.d.ts",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"import": "./build/src/index.js",
"require": "./build/src/index.js"
},
"./index.css": "./build/src/index.css"
},
"scripts": {
"pub": "npm run lint && npm run build && npm publish",
"build": "gts clean && tsc && cp src/index.css build/src/index.css",
"lint": "gts lint",
"fix": "gts fix"
},
"dependencies": {
"@tiptap/core": "^2.11.5",
"@tiptap/extension-code": "^2.11.5",
"@tiptap/extension-code-block": "^2.11.5",
"@tiptap/extension-document": "^2.11.5",
"@tiptap/extension-dropcursor": "^2.11.5",
"@tiptap/extension-gapcursor": "^2.11.5",
"@tiptap/extension-hard-break": "^2.11.5",
"@tiptap/extension-history": "^2.11.5",
"@tiptap/extension-paragraph": "^2.11.5",
"@tiptap/extension-placeholder": "^2.11.5",
"@tiptap/extension-text": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/suggestion": "^2.11.5",
"@welshman/lib": "~0.0.40",
"@welshman/util": "^0.0.60",
"nostr-editor": "^0.0.4-pre.13",
"nostr-tools": "^2.10.4",
"tippy.js": "^6.3.7"
}
}