forked from brijeshb42/kattappa
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.59 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
{
"name": "scroll-tiptap-kattappa",
"version": "0.9.8",
"description": "A block based rich text editor with support of Images, embeds( Youtube, Instagram, Vine, Vimeo etc)",
"main": "./lib/index.js",
"scripts": {
"prepublish": "NODE_ENV=production npm run build:tiptap-exports && babel ./src -d lib --ignore ./src/demo.js,./src/tiptap-exports.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production npm run build:tiptap-exports && babel ./src -d lib --ignore ./src/demo.js,./src/tiptap-exports.js",
"build:tiptap-exports": "vite build -c vite.tiptap-exports.config.js",
"dev": "mkdir -p lib && cp index.template.html lib/index.html && ./node_modules/.bin/webpack-dev-server --host 0.0.0.0 --port 8080 --devtool eval --content-base lib/ --progress --colors --hot"
},
"repository": {
"type": "git",
"url": "https://github.com/scrolltech/kattappa.git"
},
"keywords": [
"kattappa",
"block",
"editor",
"react",
"rich-text"
],
"author": "Brijesh Bittu <[email protected]>",
"contributors": "Rakesh Gunduka <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scrolltech/kattappa/issues"
},
"homepage": "https://github.com/scrolltech/kattappa",
"dependencies": {
"@tiptap/core": "^2.0.4",
"@tiptap/extension-bullet-list": "^2.0.4",
"@tiptap/extension-link": "^2.0.4",
"@tiptap/extension-list-item": "^2.0.4",
"@tiptap/extension-ordered-list": "^2.0.4",
"@tiptap/extension-placeholder": "^2.0.4",
"@tiptap/extension-underline": "^2.0.4",
"@tiptap/pm": "^2.4.0",
"@tiptap/starter-kit": "^2.0.4",
"html-janitor": "^2.0.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"scribe-editor": "^3.2.0",
"scribe-plugin-curly-quotes": "^1.0.1",
"scribe-plugin-formatter-html-ensure-semantic-elements": "^1.0.1",
"scribe-plugin-formatter-plain-text-convert-new-lines-to-html": "^0.1.1",
"scribe-plugin-heading-command": "^0.1.0",
"scribe-plugin-sanitizer": "^0.1.10",
"scribe-plugin-smart-lists": "^0.1.8"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"imports-loader": "^0.8.0",
"node-sass": "^4.12.0",
"react-hot-loader": "^4.8.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"vite": "^4.4.9",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
}
}