This repository was archived by the owner on Aug 15, 2024. It is now read-only.
forked from bolinfest/monaco-tm
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.31 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.31 KB
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
{
"name": "monaco-tm",
"version": "0.0.0",
"description": "demo of wiring up Monaco to TextMate",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"demo": "webpack-dev-server --mode development --config webpack.config.cjs --host 0.0.0.0 --port 8084",
"build": "(rm -r dist output || true)|| exit 0 && webpack --config webpack.config.cjs --progress && cp -R configurations dist/configurations && cp -R fonts dist/fonts && cp -R grammars dist/grammars && mkdir dist/node_modules && cp -R node_modules/vscode-oniguruma dist/node_modules/vscode-oniguruma && cp index.html dist/index.html && mkdir output && cp -R dist output/monaco-textmate.bundle && open output",
"release": "tsc"
},
"dependencies": {
"emmet-monaco-es": "^5.1.2",
"monaco-editor": "https://github.com/thebaselab/monaco-editor-release#7bc2b43c9acadf0ab0a45271c7c195b0fb8e1fd7",
"monaco-vim": "^0.4.1",
"vscode-oniguruma": "1.5.1",
"vscode-textmate": "7.0.1"
},
"devDependencies": {
"css-loader": "5.2.7",
"file-loader": "^6.2.0",
"monaco-editor-webpack-plugin": "7.0.1",
"prettier": "2.0.5",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "5.5.3",
"wasm-loader": "1.3.0",
"webpack": "^5.92.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}