-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "supercode-tinymce-plugin",
"version": "1.2.1",
"description": "An Enhanced and open source Code editor for TinyMCE with improved integration with TinyMCE view",
"main": "index.js",
"scripts": {
"build": "cp -r src/* supercode/ && vite build",
"start": "rm -rf public/tinymce && cp -r node_modules/tinymce public && storybook dev -p 6006",
"build-storybook": "cp -r node_modules/tinymce public && storybook build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Pratham Vaidya",
"license": "ISC",
"type": "module",
"devDependencies": {
"@chromatic-com/storybook": "^1.2.26",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/react": "^8.0.5",
"@storybook/react-vite": "^8.0.5",
"@storybook/test": "^8.0.5",
"prop-types": "^15.8.1",
"rollup-plugin-terser": "^7.0.2",
"storybook": "^8.0.5",
"vite": "^5.2.7"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@tinymce/tinymce-react": "^5.0.1",
"markdown-it": "^14.1.0",
"tinymce": "^7.0.0",
"turndown": "^7.1.3"
},
"keywords": [
"opensource",
"tinymce",
"ace",
"plugin",
"source-code",
"code",
"source-code-editor"
]
}