2021-11-06 02:15:13 +03:00
|
|
|
{
|
|
|
|
"name": "monaco-editor",
|
|
|
|
"private": true,
|
2021-11-09 18:30:31 +03:00
|
|
|
"version": "0.30.1",
|
2021-11-06 02:15:13 +03:00
|
|
|
"description": "A browser based code editor",
|
|
|
|
"author": "Microsoft Corporation",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
|
|
|
"build-website": "gulp build-website && npm run typedoc",
|
2021-11-15 18:25:47 +03:00
|
|
|
"gulp": "node ./node_modules/gulp/bin/gulp.js",
|
|
|
|
"import-typescript": "node ./build/importTypescript.js",
|
|
|
|
"playwright-install": "node ./node_modules/playwright/install.js",
|
|
|
|
"postinstall": "node build/postinstall.js",
|
2021-11-15 13:58:26 +03:00
|
|
|
"prettier-check": "prettier --check .",
|
2021-11-15 18:25:47 +03:00
|
|
|
"prettier": "prettier --write .",
|
2021-11-15 13:13:52 +03:00
|
|
|
"pretty-quick": "pretty-quick --staged",
|
2021-11-15 18:25:47 +03:00
|
|
|
"release": "node ./build/build.js && gulp release",
|
|
|
|
"simpleserver": "gulp simpleserver",
|
|
|
|
"smoketest-debug": "node ./test/smoke/runner.js --debug-tests",
|
|
|
|
"smoketest": "node ./test/smoke/runner.js",
|
|
|
|
"test": "node ./test/unit/all.js",
|
|
|
|
"typedoc": "cd monaco-editor/typedoc && \"../../node_modules/.bin/typedoc\" --options ./typedoc.json",
|
|
|
|
"watch": "tsc -w -p ./src",
|
|
|
|
"website": "gulp build-website && npm run typedoc && gulp prepare-website-branch"
|
2021-11-06 02:15:13 +03:00
|
|
|
},
|
|
|
|
"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": {
|
2021-11-08 18:07:47 +03:00
|
|
|
"@types/event-stream": "^3.3.34",
|
2021-11-06 02:15:13 +03:00
|
|
|
"@types/tape": "^4.13.2",
|
|
|
|
"@typescript/vfs": "^1.3.5",
|
2021-11-15 17:55:37 +03:00
|
|
|
"chai": "^4.3.4",
|
2021-11-06 02:15:13 +03:00
|
|
|
"clean-css": "^5.1.1",
|
2021-11-11 23:52:33 +03:00
|
|
|
"esbuild": "^0.13.13",
|
|
|
|
"esbuild-plugin-alias": "^0.2.0",
|
2021-11-06 02:15:13 +03:00
|
|
|
"event-stream": "4.0.1",
|
|
|
|
"glob": "^7.2.0",
|
|
|
|
"gulp": "^4.0.2",
|
2021-11-15 13:13:52 +03:00
|
|
|
"husky": "^7.0.4",
|
2021-11-06 02:15:13 +03:00
|
|
|
"jsdom": "^17.0.0",
|
|
|
|
"jsonc-parser": "^3.0.0",
|
2021-11-15 17:55:37 +03:00
|
|
|
"mocha": "^9.1.3",
|
2021-11-09 18:30:09 +03:00
|
|
|
"monaco-editor-core": "0.30.1",
|
2021-11-15 17:55:37 +03:00
|
|
|
"playwright": "^1.16.3",
|
2021-11-06 02:15:13 +03:00
|
|
|
"prettier": "^2.4.1",
|
2021-11-15 13:13:52 +03:00
|
|
|
"pretty-quick": "^3.1.1",
|
2021-11-06 02:15:13 +03:00
|
|
|
"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-textdocument": "^1.0.2",
|
2021-11-08 18:07:47 +03:00
|
|
|
"vscode-languageserver-types": "3.16.0",
|
2021-11-06 02:15:13 +03:00
|
|
|
"vscode-uri": "3.0.2",
|
2021-11-13 23:38:09 +03:00
|
|
|
"yaserver": "^0.4.0"
|
2021-11-06 02:15:13 +03:00
|
|
|
}
|
|
|
|
}
|