-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@evans-kim/vueuv",
"version": "0.0.1",
"private": false,
"description": "Vue User-friendly html Editor Used only Vue",
"author": {
"email": "[email protected]",
"name": "Evans Kim"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"build:dev": "rm -rf ./public && vue-cli-service build --mode development",
"build:plugin": "vue-cli-service build src/plugin.ts --dest=lib --target=lib"
},
"main": "lib/vueuv.umd.min.js",
"dependencies": {
"@tinymce/tinymce-vue": "^3.2.6",
"@types/sortablejs": "^1.10.6",
"@vue/composition-api": "^1.0.0-beta.20",
"autoprefixer": "^9.8.6",
"core-js": "^3.8.0",
"css-to-object": "^1.1.0",
"dom-inspector": "^1.2.4",
"lodash": "^4.17.20",
"postcss": "^8.2.10",
"sortablejs": "^1.12.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.1",
"tinymce": "^5.6.1",
"v-tooltip": "^2.0.3",
"vue": "^2.6.10",
"vue-color": "^2.7.1",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.165",
"@types/mocha": "^5.2.4",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-plugin-typescript": "^4.5.9",
"@vue/cli-plugin-unit-mocha": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.1.1",
"chai": "^4.1.2",
"css-element-queries": "^1.2.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"sass": "^1.29.0",
"sass-loader": "^8.0.2",
"typescript": "~3.9.3",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2",
"vue-template-compiler": "^2.6.11"
},
"keywords": [
"wysiwyg",
"html-editor",
"cms",
"vue",
"vuejs"
],
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/evans-kim/vueuv.git"
}
}