Skip to content

Commit

Permalink
Merge pull request #67 from aavishkarmishra/master
Browse files Browse the repository at this point in the history
Add TypeScript support, config and update dependencies
  • Loading branch information
neSpecc authored Aug 16, 2024
2 parents 9377ca7 + 2e45c09 commit bb8cc9d
Show file tree
Hide file tree
Showing 6 changed files with 1,050 additions and 345 deletions.
19 changes: 13 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@editorjs/quote",
"version": "2.6.0",
"version": "2.7.0",
"keywords": [
"codex editor",
"quote",
Expand All @@ -18,22 +18,29 @@
"exports": {
".": {
"import": "./dist/quote.mjs",
"require": "./dist/quote.umd.js"
"require": "./dist/quote.umd.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build"
"build": "vite build",
"preview": "vite preview"
},
"author": {
"name": "CodeX",
"email": "[email protected]"
},
"devDependencies": {
"@editorjs/editorjs": "^2.29.1",
"typescript": "^5.4.5",
"vite": "^4.5.0",
"vite-plugin-css-injected-by-js": "^3.3.0"
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^3.9.1"
},
"dependencies": {
"@codexteam/icons": "^0.0.5"
"@codexteam/icons": "^0.3.2",
"@editorjs/dom": "^0.0.1"
}
}
}
310 changes: 0 additions & 310 deletions src/index.js

This file was deleted.

Loading

0 comments on commit bb8cc9d

Please sign in to comment.