forked from bazingaedward/monaco-editor-vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "monaco-editor-vue3",
"version": "0.1.4",
"keywords": [
"Vue3",
"monaco",
"monaco-editor"
],
"main": "./dist/monaco-editor-vue3.umd.js",
"module": "./dist/monaco-editor-vue3.es.js",
"author": {
"name": "邱凯翔",
"email": "[email protected]",
"url": "https://github.com/bazingaedward"
},
"license": "MIT",
"repository": {
"url": "bazingaedward/monaco-editor-vue3",
"type": "git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "jest",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"monaco-editor": "^0.25.2",
"vue": "^3.1.2"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@vitejs/plugin-vue": "^1.2.1",
"@vue/compiler-sfc": "^3.1.2",
"@vue/test-utils": "^2.0.0-rc.8",
"babel-jest": "26",
"conventional-changelog-cli": "^2.1.1",
"jest": "26",
"jest-css-modules": "^2.1.0",
"rollup-plugin-monaco-editor": "^0.0.7",
"rollup-plugin-postcss": "^4.0.0",
"sass": "^1.35.1",
"vite": "^2.1.5",
"vue-jest": "^5.0.0-alpha.10"
}
}