monaco-editor/package.json

82 lines
2.8 KiB
JSON
Raw Permalink Normal View History

2021-11-06 07:15:13 +08:00
{
"name": "monaco-editor",
2024-09-19 18:28:03 +08:00
"version": "0.52.0",
"vscodeRef": "493330cdc6475247184ea459c66776c3da12cd2d",
"private": true,
2021-11-06 07:15:13 +08:00
"description": "A browser based code editor",
2023-01-09 13:19:43 +08:00
"homepage": "https://github.com/microsoft/monaco-editor",
2021-11-06 07:15:13 +08:00
"author": "Microsoft Corporation",
"license": "MIT",
"scripts": {
2022-02-03 21:56:52 +08:00
"import-typescript": "ts-node ./build/importTypescript",
"playwright-install": "node ./node_modules/playwright/install.js",
"playwright-install-deps": "playwright install-deps",
2022-02-03 21:56:52 +08:00
"postinstall": "ts-node ./build/postinstall",
2021-11-15 18:58:26 +08:00
"prettier-check": "prettier --check .",
"prettier": "prettier --write .",
2021-11-15 18:13:52 +08:00
"pretty-quick": "pretty-quick --staged",
2022-02-03 21:56:52 +08:00
"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 17:26:28 +08:00
"test": "mocha test/unit/all.js && ts-node ./build/check-samples",
2022-03-29 18:31:07 +08:00
"deps-all-remove": "ts-node ./build/npm/removeAll",
"deps-all-install": "ts-node ./build/npm/installAll",
"update-actions": "pin-github-action ./.github/workflows/website.yml",
2023-02-10 17:26:28 +08:00
"watch": "tsc -w -p ./src",
"build": "ts-node ./build/build-languages",
"build-monaco-editor": "npm run build && ts-node ./build/build-monaco-editor"
2021-11-06 07:15:13 +08: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 05:43:53 +08:00
"@types/mocha": "^9.1.0",
2023-03-04 06:07:57 +08:00
"@types/shelljs": "^0.8.11",
2021-11-06 07:15:13 +08:00
"@typescript/vfs": "^1.3.5",
2022-02-04 05:43:53 +08:00
"chai": "^4.3.6",
"clean-css": "^5.2.4",
"css-loader": "^6.7.1",
2024-02-07 01:45:34 +08:00
"esbuild": "^0.20.0",
2021-11-16 16:23:03 +08:00
"esbuild-plugin-alias": "^0.2.1",
"file-loader": "^6.2.0",
2021-11-06 07:15:13 +08:00
"glob": "^7.2.0",
"http-server": "^14.1.1",
2021-11-15 18:13:52 +08:00
"husky": "^7.0.4",
2022-01-24 18:49:42 +08:00
"jsdom": "^19.0.0",
2021-11-06 07:15:13 +08:00
"jsonc-parser": "^3.0.0",
2022-02-04 05:43:53 +08:00
"mocha": "^9.2.0",
2024-09-19 18:28:03 +08:00
"monaco-editor-core": "0.52.0-rc2",
"parcel": "^2.7.0",
2023-03-04 06:07:57 +08:00
"pin-github-action": "^1.8.0",
2023-04-04 21:41:55 +08:00
"playwright": "^1.32.2",
2022-02-04 05:43:53 +08:00
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"requirejs": "^2.3.7",
2023-03-04 06:07:57 +08:00
"shelljs": "^0.8.5",
"style-loader": "^3.3.1",
"terser": "^5.14.2",
2022-03-02 02:13:37 +08:00
"ts-node": "^10.6.0",
"typescript": "^5.4.5",
"vite": "^3.2.8",
2024-05-02 22:39:08 +08:00
"vscode-css-languageservice": "6.2.14",
"vscode-html-languageservice": "5.2.0",
"vscode-json-languageservice": "5.3.11",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-languageserver-types": "3.17.5",
"vscode-uri": "3.0.8",
"webpack": "^5.76.0",
2023-10-06 19:18:29 +08:00
"yaserver": "^0.4.0"
},
"alias": {
"process": false,
"buffer": false
2023-03-04 06:07:57 +08:00
}
2021-11-06 07:15:13 +08:00
}