forked from microsoft/monaco-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "monaco-editor",
"private": true,
"version": "0.31.0",
"description": "A browser based code editor",
"author": "Microsoft Corporation",
"license": "MIT",
"scripts": {
"build-website": "node ./build/website.js && npm run typedoc",
"build-website-ci": "node ./build/website.js && npm run typedoc && node ./build/prepare-website-branch.js",
"import-typescript": "node ./build/importTypescript.js",
"playwright-install": "node ./node_modules/playwright/install.js",
"playwright-install-deps": "playwright install-deps",
"postinstall": "node ./build/postinstall.js",
"prettier-check": "prettier --check .",
"prettier": "prettier --write .",
"pretty-quick": "pretty-quick --staged",
"release": "node ./build/build.js && node ./build/release.js && node ./build/importEditorWebpackPlugin.js",
"simpleserver": "node ./build/simpleserver",
"smoketest-debug": "node ./test/smoke/runner.js --debug-tests",
"smoketest": "node ./test/smoke/runner.js",
"test": "mocha test/unit/all.js",
"typedoc": "cd website/typedoc && \"../../node_modules/.bin/typedoc\" --options ./typedoc.json",
"watch": "tsc -w -p ./src"
},
"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/mocha": "^9.0.0",
"@typescript/vfs": "^1.3.5",
"chai": "^4.3.4",
"clean-css": "^5.2.2",
"esbuild": "^0.13.13",
"esbuild-plugin-alias": "^0.2.1",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jsdom": "^18.1.0",
"jsonc-parser": "^3.0.0",
"mocha": "^9.1.3",
"monaco-editor-core": "0.30.1",
"playwright": "^1.16.3",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"requirejs": "^2.3.6",
"terser": "^5.10.0",
"typedoc": "^0.22.9",
"typescript": "4.4.4",
"vscode-css-languageservice": "^5.1.8",
"vscode-html-languageservice": "^4.1.1",
"vscode-json-languageservice": "4.1.10",
"vscode-languageserver-textdocument": "^1.0.2",
"vscode-languageserver-types": "3.16.0",
"vscode-uri": "3.0.2",
"yaserver": "^0.4.0"
}
}