Files
notesnook/packages/editor/package.json

92 lines
2.9 KiB
JSON
Raw Normal View History

2022-04-05 22:53:04 +05:00
{
2022-07-15 09:29:09 +05:00
"name": "@streetwriters/editor",
"version": "1.0.1",
2022-07-06 11:17:01 +05:00
"main": "dist/es/index.js",
2022-07-15 09:29:09 +05:00
"license": "GPL-3.0",
"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",
"@mdi/js": "^6.9.96",
"@mdi/react": "^1.6.0",
2022-04-17 07:22:15 +05:00
"@rebass/forms": "^4.0.6",
2022-04-22 01:49:32 +05:00
"@social-embed/lib": "^0.0.1-next.12",
2022-06-30 21:39:01 +05:00
"@tiptap/core": "^2.0.0-beta.181",
"@tiptap/extension-character-count": "^2.0.0-beta.31",
"@tiptap/extension-color": "^2.0.0-beta.12",
"@tiptap/extension-font-family": "^2.0.0-beta.24",
"@tiptap/extension-highlight": "^2.0.0-beta.35",
"@tiptap/extension-history": "^2.0.0-beta.26",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.36",
"@tiptap/extension-link": "^2.0.0-beta.43",
"@tiptap/extension-placeholder": "^2.0.0-beta.53",
"@tiptap/extension-subscript": "^2.0.0-beta.13",
"@tiptap/extension-superscript": "^2.0.0-beta.13",
"@tiptap/extension-table": "^2.0.0-beta.54",
"@tiptap/extension-table-cell": "^2.0.0-beta.23",
"@tiptap/extension-table-header": "^2.0.0-beta.25",
"@tiptap/extension-table-row": "^2.0.0-beta.22",
"@tiptap/extension-task-item": "^2.0.0-beta.37",
"@tiptap/extension-task-list": "^2.0.0-beta.29",
"@tiptap/extension-text-align": "^2.0.0-beta.31",
"@tiptap/extension-text-style": "^2.0.0-beta.26",
"@tiptap/extension-underline": "^2.0.0-beta.25",
"@tiptap/starter-kit": "^2.0.0-beta.190",
"detect-indent": "^7.0.0",
2022-04-17 07:22:15 +05:00
"emotion-theming": "^10.0.19",
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-utils": "github:atlassian/prosemirror-utils",
"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-04-17 07:22:15 +05:00
"rebass": "^4.0.7",
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",
2022-04-17 07:22:15 +05:00
"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",
2022-07-01 08:12:38 +05:00
"@types/react": "^17.0.37",
2022-04-17 07:22:15 +05:00
"@types/react-color": "^3.0.6",
2022-07-01 08:12:38 +05:00
"@types/react-dom": "^17.0.11",
2022-04-17 07:22:15 +05:00
"@types/react-modal": "^3.13.1",
"@types/rebass": "^4.0.10",
"@types/rebass__forms": "^4.0.6",
2022-04-17 07:22:15 +05:00
"@types/tinycolor2": "^1.4.3",
"isomorphic-fetch": "^3.0.0",
2022-04-05 22:53:04 +05:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
2022-06-30 21:39:01 +05:00
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
2022-04-17 07:22:15 +05:00
"typescript-plugin-css-modules": "^3.4.0",
2022-07-15 09:29:09 +05:00
"web-vitals": "^2.1.4",
"@streetwriters/theme": "1.0.0"
2022-04-05 22:53:04 +05:00
},
2022-05-31 08:58:33 +05:00
"peerDependencies": {
2022-07-15 09:29:09 +05:00
"framer-motion": "^4.1.17"
2022-05-31 08:58:33 +05:00
},
2022-04-05 22:53:04 +05:00
"scripts": {
"build": "./scripts/build.sh",
2022-07-15 09:29:09 +05:00
"watch": "./scripts/build.sh --watch",
2022-07-15 10:03:34 +05:00
"prepub": "./scripts/compile.sh",
"pub": "np"
},
"np": {
"tests": false,
"releaseDraft": false
},
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
}
}