monaco-editor/package.json

84 строки
2.8 KiB
JSON
Исходник Обычный вид История

2021-11-06 02:15:13 +03:00
{
"name": "monaco-editor",
2023-02-06 16:39:00 +03:00
"version": "0.35.0",
2023-02-07 19:10:05 +03:00
"vscodeRef": "b29a89cbf98df4a8e5079a992c313ce9a1749d55",
"private": true,
2021-11-06 02:15:13 +03:00
"description": "A browser based code editor",
2023-01-09 08:19:43 +03:00
"homepage": "https://github.com/microsoft/monaco-editor",
2021-11-06 02:15:13 +03:00
"author": "Microsoft Corporation",
"license": "MIT",
"scripts": {
2022-02-03 16:56:52 +03:00
"import-typescript": "ts-node ./build/importTypescript",
"playwright-install": "node ./node_modules/playwright/install.js",
"playwright-install-deps": "playwright install-deps",
2022-02-03 16:56:52 +03:00
"postinstall": "ts-node ./build/postinstall",
2021-11-15 13:58:26 +03:00
"prettier-check": "prettier --check .",
"prettier": "prettier --write .",
2021-11-15 13:13:52 +03:00
"pretty-quick": "pretty-quick --staged",
2022-02-03 16:56:52 +03:00
"release": "ts-node ./build/build && ts-node ./build/release",
"simpleserver": "ts-node ./build/simpleserver",
"package-for-smoketest-webpack": "ts-node ./test/smoke/package-webpack",
"package-for-smoketest-webpack-cross-origin": "ts-node ./test/smoke/package-webpack --cross-origin",
"package-for-smoketest-esbuild": "ts-node ./test/smoke/package-esbuild",
"package-for-smoketest-vite": "ts-node ./test/smoke/package-vite",
"smoketest": "node ./test/smoke/runner.js",
"smoketest-debug": "node ./test/smoke/runner.js --debug-tests",
2023-02-10 12:26:28 +03:00
"test": "mocha test/unit/all.js && ts-node ./build/check-samples",
2022-03-29 13:31:07 +03:00
"deps-all-remove": "ts-node ./build/npm/removeAll",
"deps-all-install": "ts-node ./build/npm/installAll",
2023-02-10 12:26:28 +03:00
"watch": "tsc -w -p ./src",
"update-actions": "pin-github-action ./.github/workflows/website.yml"
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": {
2022-02-04 00:43:53 +03:00
"@types/mocha": "^9.1.0",
2021-11-06 02:15:13 +03:00
"@typescript/vfs": "^1.3.5",
2022-02-04 00:43:53 +03:00
"chai": "^4.3.6",
"clean-css": "^5.2.4",
"css-loader": "^6.7.1",
"esbuild": "^0.14.49",
2021-11-16 11:23:03 +03:00
"esbuild-plugin-alias": "^0.2.1",
"file-loader": "^6.2.0",
2021-11-06 02:15:13 +03:00
"glob": "^7.2.0",
"http-server": "^14.1.1",
2021-11-15 13:13:52 +03:00
"husky": "^7.0.4",
2022-01-24 13:49:42 +03:00
"jsdom": "^19.0.0",
2021-11-06 02:15:13 +03:00
"jsonc-parser": "^3.0.0",
2022-02-04 00:43:53 +03:00
"mocha": "^9.2.0",
2023-02-06 16:39:00 +03:00
"monaco-editor-core": "0.35.0-dev.20230127",
"parcel": "^2.7.0",
2022-02-04 00:43:53 +03:00
"playwright": "^1.18.1",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
2021-11-06 02:15:13 +03:00
"requirejs": "^2.3.6",
"style-loader": "^3.3.1",
"terser": "^5.14.2",
2022-03-01 21:13:37 +03:00
"ts-node": "^10.6.0",
2023-02-10 12:26:28 +03:00
"typedoc": "^0.23.10",
"typescript": "^4.7.4",
"vite": "^3.1.8",
2022-04-01 19:07:52 +03:00
"vscode-css-languageservice": "5.4.1",
2022-03-31 16:12:17 +03:00
"vscode-html-languageservice": "4.2.4",
"vscode-json-languageservice": "4.2.1",
2022-02-03 18:55:33 +03:00
"vscode-languageserver-textdocument": "^1.0.4",
2021-11-08 18:07:47 +03:00
"vscode-languageserver-types": "3.16.0",
2022-02-03 18:55:33 +03:00
"vscode-uri": "3.0.3",
"webpack": "^5.74.0",
2022-03-01 21:13:37 +03:00
"yaserver": "^0.4.0"
},
"alias": {
"process": false,
"buffer": false
2023-02-10 12:26:28 +03:00
},
"dependencies": {
"@types/shelljs": "^0.8.11",
"pin-github-action": "^1.8.0",
"shelljs": "^0.8.5"
2021-11-06 02:15:13 +03:00
}
}