-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 822 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 822 Bytes
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
{
"name": "redaxo-tinymce-addon",
"private": true,
"workspaces": [
"custom_plugins/*"
],
"dependencies": {
"tinymce": "^8.4.0",
"tinymce-i18n": "^26.4.6"
},
"devDependencies": {
"esbuild": "^0.25.0",
"fast-glob": "^3.2.12"
},
"scripts": {
"postinstall": "pnpm run -s vendor:copy",
"vendor:copy": "node ./scripts/vendor-copy.js",
"vendor:build": "node ./scripts/vendor-copy.js --staging",
"plugins:build": "node ./scripts/build-plugins.js",
"build:staging": "pnpm run vendor:build && pnpm run plugins:build -- --staging",
"build:sync": "node ./scripts/sync-build-to-assets.js",
"build": "pnpm run build:staging && pnpm run build:sync",
"clean-plugins": "node ./scripts/build-plugins.js --clean",
"clean-build": "node ./scripts/clean-build.js"
}
}