-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.12 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.12 KB
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
{
"name": "@ckeditor/ckeditor5-inspector",
"main": "build/inspector.js",
"files": [
"build",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"description": "The official CKEditor 5 instance inspector.",
"license": "SEE LICENSE IN LICENSE.md",
"version": "5.0.0",
"engines": {
"node": ">=24.11.0",
"pnpm": ">=10.28.0",
"yarn": "\n\n┌─────────────────────────┐\n│ Hey, we use pnpm now! │\n└─────────────────────────┘\n\n"
},
"scripts": {
"nice": "ckeditor5-dev-changelog-create-entry",
"postinstall": "node ./scripts/postinstall.mjs",
"build": "rimraf -g './build/*' && pnpm run build:inspector && pnpm run build:mini",
"dev": "vite",
"build:inspector": "vite build --mode fullInspector",
"build:mini": "vite build --mode miniInspector",
"release:prepare-changelog": "node ./scripts/preparechangelog.mjs",
"release:prepare-packages": "node ./scripts/preparepackages.mjs",
"release:publish-packages": "node ./scripts/publishpackages.mjs",
"test": "vitest --run",
"test:scripts": "vitest --config ./scripts-tests/vitest.config.mjs --run",
"lint": "eslint",
"validate-license-files": "node ./scripts/ci/validate-license-files.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-inspector.git"
},
"author": "CKSource (http://cksource.com/)",
"bugs": {
"url": "https://github.com/ckeditor/ckeditor5-inspector/issues"
},
"homepage": "https://github.com/ckeditor/ckeditor5-inspector",
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"es-toolkit": "^1.44.0",
"javascript-stringify": "^2.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-modal": "^3.14.4",
"react-redux": "^7.2.6",
"react-rnd": "~10.2.4",
"redux": "^4.1.2"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-bump-year": "^55.0.0",
"@ckeditor/ckeditor5-dev-changelog": "^55.0.0",
"@ckeditor/ckeditor5-dev-ci": "^55.0.0",
"@ckeditor/ckeditor5-dev-license-checker": "^55.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^55.0.0",
"@ckeditor/ckeditor5-dev-utils": "^55.0.0",
"@inquirer/prompts": "^7.8.3",
"@listr2/prompt-adapter-inquirer": "^3.0.2",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^12.1.5",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"ckeditor5": "^47.6.0",
"eslint": "^9.34.0",
"eslint-config-ckeditor5": "^13.0.0",
"eslint-plugin-ckeditor5-rules": "^13.0.0",
"eslint-plugin-react": "^7.37.5",
"fs-extra": "^11.3.0",
"globals": "^16.1.0",
"husky": "^9.1.7",
"lint-staged": "^10.5.4",
"listr2": "^9.0.2",
"minimist": "^1.2.8",
"playwright": "^1.55.0",
"rimraf": "^6.1.3",
"typescript": "^5.0.0",
"upath": "^2.0.1",
"vite": "^8.0.0",
"vite-plugin-css-injected-by-js": "^4.0.1",
"vite-plugin-svgr": "^4.4.0",
"vitest": "^4.1.0"
},
"lint-staged": {
"**/*": [
"eslint --quiet"
]
}
}