This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.88 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
{
"name": "@ckeditor/vite-plugin-ckeditor5",
"version": "0.1.3",
"type": "module",
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/ckeditor/vite-plugin-ckeditor5",
"bugs": "https://github.com/ckeditor/vite-plugin-ckeditor5/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/vite-plugin-ckeditor5.git"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"scripts/postinstall.cjs",
"CHANGELOG.md"
],
"scripts": {
"dev": "nodemon --exec 'yarn build' -e js,ts --ignore dist",
"build": "unbuild",
"postinstall": "node ./scripts/postinstall.cjs",
"lint": "eslint --quiet \"**/*.@(cjs|js|ts)\"",
"changelog": "node ./scripts/changelog.cjs",
"release:bump-version": "node ./scripts/bump-version.cjs",
"release:publish": "node ./scripts/publish.cjs",
"preversion": "yarn run build"
},
"dependencies": {
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"postcss-mixins": "^9.0.2",
"postcss-nesting": "^10.1.4"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-bump-year": "^37.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^37.0.0",
"@types/node": "^18.11.17",
"@types/postcss-import": "^14.0.0",
"@types/postcss-mixins": "^9.0.0",
"eslint": "^7.19.0",
"eslint-config-ckeditor5": "^4.1.1",
"husky": "^8.0.2",
"lint-staged": "^12.0.0",
"nodemon": "^2.0.20",
"unbuild": "^1.0.2",
"vite": "^4.0.0"
},
"engines": {
"node": "^14.18.0 || >= 16"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --quiet"
]
},
"eslintIgnore": [
"dist/**",
"playground/**/dist"
]
}