Files
notesnook/packages/editor/package.json

90 lines
2.9 KiB
JSON
Raw Normal View History

2022-04-05 22:53:04 +05:00
{
"name": "@notesnook/editor",
2022-08-17 09:27:42 +05:00
"version": "1.3.1",
2022-08-26 16:12:58 +05:00
"main": "dist/index.js",
"license": "GPL-3.0-or-later",
2022-07-15 09:29:09 +05:00
"repository": {
"type": "git",
"url": "git://github.com/streetwriters/notesnook-editor.git"
},
2022-04-05 22:53:04 +05:00
"dependencies": {
2022-06-30 21:39:01 +05:00
"@_ueberdosis/prosemirror-tables": "^1.1.3",
"@emotion/react": "^11.10.0",
2022-06-30 21:39:01 +05:00
"@mdi/js": "^6.9.96",
"@mdi/react": "^1.6.0",
"@notesnook/theme": "*",
2022-04-22 01:49:32 +05:00
"@social-embed/lib": "^0.0.1-next.12",
"@theme-ui/components": "^0.14.7",
"@theme-ui/core": "^0.14.7",
2022-09-16 12:15:31 +05:00
"@tiptap/core": "^2.0.0-beta.195",
"@tiptap/extension-character-count": "^2.0.0-beta.195",
"@tiptap/extension-color": "^2.0.0-beta.195",
"@tiptap/extension-font-family": "^2.0.0-beta.195",
"@tiptap/extension-history": "^2.0.0-beta.195",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.195",
"@tiptap/extension-link": "^2.0.0-beta.195",
"@tiptap/extension-placeholder": "^2.0.0-beta.195",
"@tiptap/extension-subscript": "^2.0.0-beta.195",
"@tiptap/extension-superscript": "^2.0.0-beta.195",
"@tiptap/extension-table": "^2.0.0-beta.195",
"@tiptap/extension-table-cell": "^2.0.0-beta.195",
"@tiptap/extension-table-header": "^2.0.0-beta.195",
"@tiptap/extension-table-row": "^2.0.0-beta.195",
"@tiptap/extension-task-item": "^2.0.0-beta.195",
"@tiptap/extension-task-list": "^2.0.0-beta.195",
"@tiptap/extension-text-align": "^2.0.0-beta.195",
"@tiptap/extension-text-style": "^2.0.0-beta.195",
"@tiptap/extension-underline": "^2.0.0-beta.195",
"@tiptap/starter-kit": "^2.0.0-beta.195",
"detect-indent": "^7.0.0",
2022-06-30 21:39:01 +05:00
"katex": "^0.16.0",
"prism-themes": "^1.9.0",
2022-06-30 17:27:56 +05:00
"prosemirror-codemark": "^0.4.0",
"prosemirror-commands": "^1.3.0",
"prosemirror-utils": "github:atlassian/prosemirror-utils",
2022-09-16 12:15:31 +05:00
"prosemirror-view": "1.26.2",
"re-resizable": "^6.9.9",
2022-06-04 07:56:37 +05:00
"react-colorful": "^5.5.1",
2022-06-30 21:39:01 +05:00
"react-modal": "^3.15.1",
2022-06-02 07:26:44 +05:00
"redent": "^4.0.0",
"refractor": "^4.7.0",
2022-06-02 07:26:44 +05:00
"strip-indent": "^4.0.0",
2022-04-17 07:22:15 +05:00
"tinycolor2": "^1.4.2",
2022-06-25 10:23:39 +05:00
"unfurl.js": "^5.7.0",
"zustand": "^3.7.2"
2022-04-05 22:53:04 +05:00
},
"devDependencies": {
2022-06-30 17:27:56 +05:00
"@types/katex": "^0.14.0",
"@types/prismjs": "^1.26.0",
"@types/react": "17.0.2",
"@types/react-color": "^3.0.6",
"@types/react-dom": "17.0.2",
2022-04-17 07:22:15 +05:00
"@types/react-modal": "^3.13.1",
"@types/tinycolor2": "^1.4.3",
"framer-motion": "^4.1.17",
"isomorphic-fetch": "^3.0.0",
"typescript": "^4.8.2",
"web-vitals": "^2.1.4"
2022-04-05 22:53:04 +05:00
},
2022-05-31 08:58:33 +05:00
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
2022-05-31 08:58:33 +05:00
},
2022-04-05 22:53:04 +05:00
"scripts": {
"build": "./scripts/build.mjs",
"watch": "./scripts/build.mjs --watch",
2022-08-26 16:12:58 +05:00
"prepub": "npm run build",
2022-07-26 23:26:24 +05:00
"pub": "np",
"postinstall": "npx patch-package"
2022-07-15 10:03:34 +05:00
},
"np": {
"tests": false,
2022-07-15 15:56:24 +05:00
"releaseDraft": false,
"message": "chore: bump version to %s"
},
2022-07-15 10:03:34 +05:00
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
2022-04-05 22:53:04 +05:00
}
}