-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.57 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
{
"name": "@tinymce-plugin/tinymce-vue",
"version": "0.0.1",
"description": "Official TinyMCE Vue 3 Component",
"private": false,
"repository": {
"url": "https://github.com/tinymce/tinymce-vue"
},
"main": "lib/cjs/main/ts/index.js",
"module": "lib/es2015/main/ts/index.js",
"scripts": {
"test": "bedrock-auto -b chrome-headless -f src/test/ts/**/*Test.ts",
"test-manual": "bedrock -f src/test/ts/**/*Test.ts",
"clean": "rimraf lib",
"lint": "eslint src/{main,test}/**/*.ts",
"build": "yarn run clean && yarn run lint && tsc -p ./tsconfig.es2015.json && tsc -p ./tsconfig.cjs.json && node rollup.build.js",
"storybook": "start-storybook -p 6006",
"demo": "vite",
"build-storybook": "build-storybook"
},
"keywords": [
"tinymce",
"vue",
"component"
],
"author": "Ephox Inc",
"license": "MIT",
"files": [
"lib/*/**",
"README.md",
"CHANGELOG.md",
"LICENSE.txt"
],
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@ephox/agar": "^5.3.1",
"@ephox/bedrock-client": "^11.3.0",
"@ephox/bedrock-server": "^11.3.1",
"@ephox/katamari": "^7.2.1",
"@ephox/sugar": "^7.1.3",
"@storybook/addon-actions": "^6.4.18",
"@storybook/addon-essentials": "^6.4.18",
"@storybook/addon-links": "^6.4.18",
"@storybook/addon-notes": "^5.3.21",
"@storybook/storybook-deployer": "^2.8.10",
"@storybook/vue3": "^6.4.18",
"@tinymce/beehive-flow": "^0.17.0",
"@tinymce/eslint-plugin": "^1.9.1",
"@tinymce/miniature": "^3.2.0",
"@types/node": "^16.7.1",
"@vitejs/plugin-vue": "^2.1.0",
"@vue/compiler-sfc": "^3.2.29",
"babel-loader": "^8.2.3",
"babel-preset-vue": "^2.0.2",
"babel-register": "^6.26.0",
"css-loader": "^6.2.0",
"file-loader": "^6.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.0",
"tinymce-4": "npm:tinymce@^4",
"tinymce-5": "npm:tinymce@^5",
"tinymce-6": "npm:tinymce@^6",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.3.5",
"vite": "^2.7.13",
"vue": "^3.2.5",
"vue-cli-plugin-storybook": "^2.1.0",
"vue-loader": "^15.2.1",
"vue-router": "^4.0.0-beta.13",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.51.1"
},
"dependencies": {
"tinymce": "^6.0.0 || ^5.5.1"
}
}