-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.02 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
{
"name": "@ckeditor/ckeditor5-integrations-common",
"version": "2.2.1",
"description": "This package implements common utility modules for integration projects.",
"keywords": [
"wysiwyg",
"rich text",
"editor",
"html",
"contentEditable",
"editing",
"ckeditor",
"ckeditor5",
"ckeditor 5"
],
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-integrations-common.git"
},
"bugs": {
"url": "https://github.com/ckeditor/ckeditor5-integrations-common/issues"
},
"homepage": "https://github.com/ckeditor/ckeditor5-integrations-common",
"scripts": {
"build": "yarn build:lib && yarn build:test-utils",
"build:lib": "vite build",
"build:test-utils": "vite build --config vite.test-utils.config.ts",
"dev": "vite",
"lint": "eslint --quiet \"**/*.{ts,tsx}\"",
"test": "vitest run --coverage",
"test:watch": "vitest --ui --watch",
"test:check:types": "tsc --noEmit -p ./tests/tsconfig.json",
"changelog": "node ./scripts/changelog.js",
"release:prepare-packages": "node ./scripts/preparepackages.js",
"release:publish-packages": "node ./scripts/publishpackages.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"ckeditor5": ">=42.0.0 || ^0.0.0-nightly"
},
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.umd.cjs"
}
},
"./test-utils": {
"import": {
"types": "./dist/test-utils/index.d.ts",
"default": "./dist/test-utils/index.js"
}
},
"./package.json": "./package.json"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
},
"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",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitest/browser": "^2.1.4",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/ui": "^2.1.4",
"ckeditor5": "^43.0.0",
"ckeditor5-premium-features": "^43.0.0",
"coveralls": "^3.1.1",
"eslint": "^7.19.0",
"eslint-config-ckeditor5": "^6.0.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"minimist": "^1.2.8",
"semver": "^7.6.3",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.0.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.4",
"webdriverio": "^8.40.2",
"tough-cookie": ">=4.1.3"
},
"resolutions": {
"ws": "^8",
"tough-cookie": "^4.1.4",
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
}
}