-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
109 lines (109 loc) · 3.2 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "tiptap-vuetify",
"version": "2.24.0",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"dev": "vue-cli-service serve ./demo/main.js",
"build": "rollup -c --environment BUILD:production",
"build-watch": "rollup -w -c",
"lint": "eslint ./src --ext .ts,.js,.vue --ignore-path .gitignore",
"lint-fix": "yarn lint --fix"
},
"resolutions": {
"prosemirror-model": "1.8.2"
},
"dependencies": {
"popper.js": "^1.16.1",
"tiptap": "^1.16.2",
"tiptap-extensions": "^1.14.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@fortawesome/fontawesome-free": "^5.8.1",
"@mdi/font": "^4.4.95",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/eslint-plugin-tslint": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"@vue/cli-plugin-typescript": "^3.5.1",
"@vue/cli-service": "^3.5.1",
"@zerollup/ts-transform-paths": "^1.7.0",
"commitizen": "^4.0.3",
"core-js": "3",
"cross-env": "^6.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"postcss-preset-env": "^6.6.0",
"rollup": "^1.7.0",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-vue": "^4.7.2",
"sass": "^1.23.0",
"sass-loader": "^7.0.0",
"semantic-release": "^15.13.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"tslib": "^1.9.3",
"tslint": "^5.15.0",
"tslint-config-standard": "^8.0.1",
"ttypescript": "^1.5.6",
"typescript": "^3.4.2",
"vue": "^2.6.10",
"vue-eslint-parser": "^6.0.4",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.6.10",
"vuetify": "^2.1.1"
},
"peerDependencies": {
"vue": "^2.0.0",
"vuetify": "^2.0.0"
},
"keywords": [
"editor",
"vuetify",
"tiptap",
"vue.js",
"material design",
"wysiwyg",
"markdown"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iliyaZelenko/tiptap-vuetify.git"
},
"bugs": {
"url": "https://github.com/iliyaZelenko/tiptap-vuetify/issues"
},
"homepage": "https://github.com/iliyaZelenko/tiptap-vuetify#readme",
"description": "Vuetify WYSIWYG editor based on Tiptap.",
"author": "Ilya Zelenko",
"main": "dist/bundle-umd.js",
"module": "dist/bundle-esm.js",
"unpkg": "dist/bundle-umd.js",
"jsdelivr": "dist/bundle-umd.js",
"typings": "dist/main.d.ts",
"files": [
"dist/*",
"types/*",
"src/*"
]
}