-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.59 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-ex",
"version": "1.3.10",
"type": "module",
"author": {
"name": "huanent",
"email": "[email protected]",
"url": "https://github.com/huanent"
},
"description": "Powerful monaco editor extension,support js css features in html and more",
"repository": {
"url": "https://github.com/huanent/monaco-editor-ex.git",
"type": "git"
},
"homepage": "https://github.com/huanent/monaco-editor-ex",
"peerDependencies": {
"monaco-editor": ">=0.34.1"
},
"keywords": [
"monaco",
"monaco-editor",
"extension",
"js in html",
"auto close tag",
"unocss"
],
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/monaco-editor-ex.umd.cjs",
"module": "./dist/monaco-editor-ex.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/monaco-editor-ex.js",
"require": "./dist/monaco-editor-ex.umd.cjs"
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"publish": "tsc && vite build && npm publish --registry https://registry.npmjs.org --access public"
},
"devDependencies": {
"@babel/parser": "^7.21.3",
"@types/js-beautify": "^1.13.3",
"@types/tinycolor2": "^1.4.3",
"@unocss/autocomplete": "^0.53.4",
"@unocss/preset-uno": "^0.53.4",
"happy-dom": "^8.2.3",
"monaco-editor": "^0.34.1",
"tinycolor2": "^1.6.0",
"typescript": "^5.0.2",
"vite": "^4.0.0",
"vite-plugin-dts": "^2.1.0",
"vitest": "^0.28.3",
"vscode-css-languageservice": "^6.2.2",
"vscode-html-languageservice": "^5.0.4"
}
}