-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 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
{
"name": "monaco-editor-i18n-plugin",
"version": "0.0.2",
"description": "A i18n plugin for the Monaco editor",
"main": "out/index.js",
"typings": "./out/index.d.ts",
"author": "DTStack",
"license": "MIT",
"scripts": {
"build": "rimraf out && tsc -p tsconfig.json && cp -r src/locale out/"
},
"bugs": {
"url": "https://github.com/DTStack/monaco-editor-i18n-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DTStack/monaco-editor-i18n-plugin"
},
"homepage": "https://github.com/DTStack/monaco-editor-i18n-plugin#readme",
"devDependencies": {
"@types/node": "^22.7.9",
"rimraf": "^5.0.10",
"typescript": "^5.4.5",
"webpack": "^5.68.0"
},
"peerDependencies": {
"monaco-editor": "0.30.1 || 0.31.1",
"webpack": "^5"
},
"keywords": [
"monaco",
"monaco editor",
"vscode",
"nls",
"i18n",
"webpack"
]
}