-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
116 lines (116 loc) · 3.07 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
110
111
112
113
114
115
116
{
"name": "@ckeditor/ckeditor5-vue",
"version": "7.3.0-alpha.0",
"description": "Official Vue.js 3+ component for CKEditor 5 – the best browser-based rich text editor.",
"keywords": [
"wysiwyg",
"rich text",
"editor",
"html",
"contentEditable",
"editing",
"vue",
"vue.js",
"vue component",
"vue.js component",
"ckeditor",
"ckeditor5",
"ckeditor 5"
],
"type": "module",
"main": "./dist/ckeditor.umd.cjs",
"module": "./dist/ckeditor.js",
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"types": "./dist/plugin.d.ts",
"import": "./dist/ckeditor.js",
"require": "./dist/ckeditor.umd.cjs"
},
"./package.json": "./package.json"
},
"dependencies": {
"lodash-es": "^4.17.21",
"@ckeditor/ckeditor5-integrations-common": "^2.2.1"
},
"peerDependencies": {
"ckeditor5": ">=42.0.0 || ^0.0.0-nightly",
"vue": "^3.4.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-bump-year": "^44.0.0",
"@ckeditor/ckeditor5-dev-ci": "^44.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^44.0.0",
"@ckeditor/ckeditor5-dev-utils": "^44.0.0",
"@types/lodash-es": "^4.17.6",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/browser": "^2.1.4",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/ui": "^2.1.4",
"@vue/test-utils": "^2.3.1",
"ckeditor5": "^43.2.0",
"ckeditor5-premium-features": "^43.2.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-ckeditor5": "^7.1.0",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.2",
"lint-staged": "^10.2.11",
"listr2": "^6.5.0",
"minimist": "^1.2.5",
"semver": "^7.6.2",
"typescript": "~5.4.5",
"vite": "^5.3.1",
"vitest": "^2.1.4",
"vue": "^3.4.30",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^2.1.6",
"webdriverio": "^8.39.0"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0",
"semver": "^7.0.0",
"ws": "^8"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build && vue-tsc --emitDeclarationOnly",
"test": "vitest run --coverage",
"test:watch": "vitest --ui --watch",
"test:check:types": "tsc --noEmit -p ./tests/tsconfig.json",
"lint": "eslint \"{demos,src,tests}/**/*.{ts,vue}\"",
"postinstall": "node ./scripts/postinstall.js",
"changelog": "node ./scripts/changelog.js",
"release:prepare-packages": "node ./scripts/preparepackages.js",
"release:publish-packages": "node ./scripts/publishpackages.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-vue.git"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/ckeditor/ckeditor5-vue/issues"
},
"homepage": "https://github.com/ckeditor/ckeditor5-vue",
"eslintIgnore": [
"coverage/**",
"dist/**"
],
"lint-staged": {
"**/*.{js,ts,vue}": [
"eslint --quiet"
]
}
}