forked from streetwriters/notesnook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@notesnook/editor",
"version": "1.3.1",
"main": "dist/index.js",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git://github.com/streetwriters/notesnook-editor.git"
},
"dependencies": {
"@_ueberdosis/prosemirror-tables": "^1.1.3",
"@emotion/react": "^11.10.0",
"@mdi/js": "^6.9.96",
"@mdi/react": "^1.6.0",
"@notesnook/theme": "*",
"@social-embed/lib": "^0.0.1-next.12",
"@theme-ui/components": "^0.14.7",
"@theme-ui/core": "^0.14.7",
"@tiptap/core": "^2.0.0-beta.199",
"@tiptap/extension-character-count": "^2.0.0-beta.199",
"@tiptap/extension-color": "^2.0.0-beta.199",
"@tiptap/extension-font-family": "^2.0.0-beta.199",
"@tiptap/extension-history": "^2.0.0-beta.199",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.199",
"@tiptap/extension-link": "^2.0.0-beta.199",
"@tiptap/extension-placeholder": "^2.0.0-beta.199",
"@tiptap/extension-subscript": "^2.0.0-beta.199",
"@tiptap/extension-superscript": "^2.0.0-beta.199",
"@tiptap/extension-table": "^2.0.0-beta.199",
"@tiptap/extension-table-cell": "^2.0.0-beta.199",
"@tiptap/extension-table-header": "^2.0.0-beta.199",
"@tiptap/extension-table-row": "^2.0.0-beta.199",
"@tiptap/extension-task-item": "^2.0.0-beta.199",
"@tiptap/extension-task-list": "^2.0.0-beta.199",
"@tiptap/extension-text-align": "^2.0.0-beta.199",
"@tiptap/extension-text-style": "^2.0.0-beta.199",
"@tiptap/extension-underline": "^2.0.0-beta.199",
"@tiptap/starter-kit": "^2.0.0-beta.199",
"detect-indent": "^7.0.0",
"katex": "^0.16.2",
"prism-themes": "^1.9.0",
"prosemirror-codemark": "^0.4.1",
"prosemirror-commands": "^1.3.1",
"prosemirror-utils": "github:atlassian/prosemirror-utils",
"prosemirror-view": "1.29.0",
"re-resizable": "^6.9.9",
"react-colorful": "^5.5.1",
"react-modal": "^3.15.1",
"redent": "^4.0.0",
"refractor": "^4.8.0",
"strip-indent": "^4.0.0",
"tinycolor2": "^1.4.2",
"unfurl.js": "^5.7.0",
"zustand": "^3.7.2"
},
"devDependencies": {
"@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",
"@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",
"zx": "^7.0.8"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"scripts": {
"build": "zx ./scripts/build.mjs",
"watch": "zx ./scripts/build.mjs --watch",
"prepub": "npm run build",
"pub": "np",
"postinstall": "npx patch-package"
},
"np": {
"tests": false,
"releaseDraft": false,
"message": "chore: bump version to %s"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
}
}