Adjust package.json scripts and move all dev deps to the root package.json

This commit is contained in:
Alex Dima 2021-11-05 16:53:05 +01:00
parent ebcdd4fe0d
commit 7c6062ccf7
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
45 changed files with 1252 additions and 5160 deletions

54
package.json Normal file
View file

@ -0,0 +1,54 @@
{
"name": "monaco-editor",
"private": true,
"version": "0.30.0",
"description": "A browser based code editor",
"author": "Microsoft Corporation",
"license": "MIT",
"scripts": {
"simpleserver": "gulp --gulpfile ./monaco-editor/gulpfile.js simpleserver",
"release": "gulp release",
"website": "gulp build-website && npm run typedoc && gulp prepare-website-branch",
"build-website": "gulp build-website && npm run typedoc",
"typedoc": "cd typedoc && \"../node_modules/.bin/typedoc\" --options ./typedoc.json"
},
"typings": "./esm/vs/editor/editor.api.d.ts",
"module": "./esm/vs/editor/editor.main.js",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/monaco-editor"
},
"devDependencies": {
"@types/tape": "^4.13.2",
"@typescript/vfs": "^1.3.5",
"clean-css": "^5.1.1",
"event-stream": "4.0.1",
"glob": "^7.2.0",
"gulp": "^4.0.2",
"jsdom": "^17.0.0",
"jsonc-parser": "^3.0.0",
"monaco-css": "3.9.0",
"monaco-editor-core": "0.30.0",
"monaco-html": "3.9.0",
"monaco-json": "3.9.0",
"monaco-languages": "2.11.1",
"monaco-plugin-helpers": "^1.0.3",
"monaco-typescript": "4.10.0",
"prettier": "^2.4.1",
"requirejs": "^2.3.6",
"rimraf": "^3.0.2",
"tape": "^5.3.1",
"terser": "^5.7.0",
"typedoc": "^0.22.7",
"typescript": "4.4.4",
"uncss": "https://github.com/uncss/uncss.git#d0adf4bb89ef4f82006f8dd5b40d22a94269e50a",
"vinyl": "^2.2.1",
"vscode-css-languageservice": "^5.1.8",
"vscode-html-languageservice": "^4.1.1",
"vscode-json-languageservice": "4.1.9",
"vscode-languageserver-types": "3.16.0",
"vscode-languageserver-textdocument": "^1.0.2",
"vscode-uri": "3.0.2",
"yaserver": "^0.3.0"
}
}