forked from thebaselab/monaco-tm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "monaco-textmate-loader",
"version": "1.0.14",
"description": "TextMate syntaxes loader for Monaco Editor",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.js",
"scripts": {
"build": "node tools/cleanup.js && tsc && tsc -p tsconfig.types.json && node tools/copyAssets",
"package": "npm run build && npm pack",
"prettier": "prettier --write \"./src/**/*.{js,ts}\""
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/ngeenx/monaco-textmate-loader.git"
},
"bugs": {
"url": "https://github.com/ngeenx/monaco-textmate-loader/issues"
},
"author": "Eyüp Erdoğan",
"contributors": [
"Eyüp Erdoğan <epsilonelittr@gmail.com>"
],
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"dependencies": {
"monaco-editor": "0.49.0",
"vscode-oniguruma": "2.0.1",
"vscode-textmate": "9.0.0"
},
"devDependencies": {
"fs-extra": "^11.2.0",
"prettier": "3.2.5",
"typescript": "5.4.5"
}
}