mirror of
https://github.com/tinymce/tinymce.git
synced 2025-07-21 11:32:37 +00:00

* TINY-10185: Tweak dependencies and scripts to better fit within the premium monorepo * TINY-10185: Rename root package to something more sensible * TINY-10185: Set more reasonable main and types properties on TinyMCE's package json * TINY-10185: Add 'build' scripts to every project * TINY-10185: Add missing inter-dependencies between modules * TINY-10185: Add type when agar is compiled standalone * TINY-10185: Don't allow dompurify to upgrade by accident * TINY-10185: Update to 6.8 release versions. Fix outdated yarn lock. * TINY-10185: Add project.json files to help with nx builds --------- Co-authored-by: Arvin Han <arvinhjt0718@gmail.com>
43 lines
949 B
JSON
43 lines
949 B
JSON
{
|
|
"name": "@tinymce/oxide",
|
|
"version": "2.8.1",
|
|
"description": "TinyMCE 5 Oxide skin",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tinymce/tinymce.git",
|
|
"directory": "modules/oxide"
|
|
},
|
|
"scripts": {
|
|
"test": "echo 'No tests'",
|
|
"build": "gulp build",
|
|
"start": "gulp watch",
|
|
"prepublishOnly": "yarn ci",
|
|
"ci": "gulp build --no-color"
|
|
},
|
|
"keywords": [
|
|
"TinyMCE"
|
|
],
|
|
"author": "Ephox Corporation DBA Tiny Technologies, Inc",
|
|
"license": "MIT",
|
|
"files": [
|
|
"build/skins/content/**/*.css",
|
|
"build/skins/content/**/*.css.map",
|
|
"build/skins/ui/**/*.css",
|
|
"build/skins/ui/**/*.css.map",
|
|
"build/skins/ui/**/*.woff",
|
|
"src/less/**/*",
|
|
"src/svg/**/*",
|
|
"src/fonts/**/*",
|
|
"src/text/**/*",
|
|
"README.md",
|
|
"LICENSE.txt"
|
|
],
|
|
"dependencies": {
|
|
"prism-themes": "^1.9.0",
|
|
"prismjs": "^1.27.0"
|
|
},
|
|
"devDependencies": {
|
|
"gulp": "^4.0.2"
|
|
}
|
|
}
|