Skip to content

Commit

Permalink
Library config stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
cesardeazevedo committed Jul 18, 2024
1 parent c666a5f commit ad647da
Show file tree
Hide file tree
Showing 5 changed files with 579 additions and 13 deletions.
20 changes: 13 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"name": "nostr-editor",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "dist/nostr-editor.js",
"umd:main": "dist/nostr-editor.umd.cjs",
"files": [
"dist"
],
"main": "./dist/nostr-editor.umd.cjs",
"module": "./dist/nostr-editor.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": "./dist/nostr-editor.js"
"default": "./dist/nostr-editor.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
Expand All @@ -23,7 +27,7 @@
"@playwright/test": "^1.44.1",
"@tiptap/extension-image": "^2.5.0",
"@tiptap/extension-youtube": "^2.5.0",
"@tiptap/starter-kit": "^2.4.0",
"@tiptap/starter-kit": "^2.5.0",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.1",
Expand All @@ -36,15 +40,17 @@
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0",
"webdriverio": "^8.38.2"
},
"engines": {
"node": ">=18.16.1"
},
"dependencies": {
"@tiptap/core": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@tiptap/core": "^2.5.0",
"@tiptap/extension-focus": "^2.5.0",
"@tiptap/pm": "^2.5.0",
"extract-domain": "^5.0.2",
"jsdom": "^24.1.0",
"linkifyjs": "^4.1.3",
Expand Down
Loading

0 comments on commit ad647da

Please sign in to comment.