UNPKG

editorjs-inline-formatter

Version:

Inline formatter tool for editorjs

81 lines (80 loc) 2.09 kB
{ "name": "editorjs-inline-formatter", "version": "0.1.0", "description": "Inline formatter tool for editorjs", "author": "MrShepardd <travinkosty@mail.ru>", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "files": [ "dist" ], "main": "./dist/bundle.umd.js", "module": "./dist/bundle.mjs", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/bundle.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/bundle.umd.js" } } }, "types": "./dist/index.d.ts", "keywords": [ "codex editor", "editor.js", "editorjs", "editorjs-inlinetool", "editor-js-inline-tool" ], "scripts": { "lint": "eslint src/ --ext .ts", "dev": "vite", "build": "vite build", "preview": "vite preview", "release:patch": "standard-version --release-as patch && git push --follow-tags origin dev && npm publish", "release:minor": "standard-version --release-as minor && git push --follow-tags origin dev && npm publish", "release:major": "standard-version --release-as major && git push --follow-tags origin dev && npm publish", "release:next": "standard-version --prerelease next && git push --follow-tags origin dev && npm publish --tag next" }, "standard-version": { "scripts": {}, "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "chore", "hidden": true }, { "type": "refactor", "section": "Refactoring" } ] }, "devDependencies": { "@editorjs/editorjs": "^2.28.1", "eslint": "^7.24.0", "eslint-config-codex": "^1.6.1", "prettier": "^2.6.2", "standard-version": "^6.0.1", "typescript": "4.2.4", "vite": "^5.2.11", "vite-plugin-css-injected-by-js": "^3.5.2", "vite-plugin-dts": "^4.4.0" }, "dependencies": { "@codexteam/icons": "^0.3.3" } }