@jx3box/jx3box-editor 2.2.33 → 2.2.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +83 -80
package/package.json
CHANGED
|
@@ -1,85 +1,88 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
},
|
|
17
|
-
"eslintConfig": {
|
|
18
|
-
"root": true,
|
|
19
|
-
"env": {
|
|
20
|
-
"node": true
|
|
2
|
+
"name": "@jx3box/jx3box-editor",
|
|
3
|
+
"version": "2.2.34",
|
|
4
|
+
"description": "JX3BOX Article & Editor",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "env DEV_SERVER=true vue-cli-service serve",
|
|
8
|
+
"serve": "vue-cli-service serve",
|
|
9
|
+
"less": "less-watch-compiler public/css public/css",
|
|
10
|
+
"build": "vue-cli-service build",
|
|
11
|
+
"lint": "vue-cli-service lint",
|
|
12
|
+
"inspect": "vue inspect > output.js",
|
|
13
|
+
"update": "npm --registry https://registry.npmjs.org install @jx3box/jx3box-common@latest @jx3box/jx3box-macro@latest @jx3box/jx3box-talent@latest @jx3box/jx3box-emotion@latest @jx3box/jx3box-data@latest @jx3box/markdown@latest",
|
|
14
|
+
"article": "vue-cli-service build --target lib --name jx3box_article src/Article.vue --mode production",
|
|
15
|
+
"tinymce": "vue-cli-service build --target lib --name tinymce src/Tinymce.vue && cp public/tinymce.html dist/tinymce.html"
|
|
21
16
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
17
|
+
"eslintConfig": {
|
|
18
|
+
"root": true,
|
|
19
|
+
"env": {
|
|
20
|
+
"node": true
|
|
21
|
+
},
|
|
22
|
+
"extends": [
|
|
23
|
+
"plugin:vue/essential"
|
|
24
|
+
],
|
|
25
|
+
"rules": {},
|
|
26
|
+
"parserOptions": {
|
|
27
|
+
"parser": "babel-eslint"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"browserslist": [
|
|
31
|
+
"> 1%",
|
|
32
|
+
"last 2 versions"
|
|
24
33
|
],
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@jx3box/jx3box-common": "^8.7.1",
|
|
36
|
+
"@jx3box/jx3box-data": "^3.8.2",
|
|
37
|
+
"@jx3box/jx3box-emotion": "^1.2.13",
|
|
38
|
+
"@jx3box/jx3box-macro": "^1.0.1",
|
|
39
|
+
"@jx3box/jx3box-talent": "^1.3.3",
|
|
40
|
+
"@jx3box/markdown": "^0.1.5",
|
|
41
|
+
"@tinymce/tinymce-vue": "^3.2.2",
|
|
42
|
+
"axios": "^0.19.2",
|
|
43
|
+
"core-js": "^3.6.5",
|
|
44
|
+
"csslab": "^4.0.3",
|
|
45
|
+
"dayjs": "^1.10.7",
|
|
46
|
+
"element-ui": "^2.13.2",
|
|
47
|
+
"hevue-img-preview": "^5.0.0",
|
|
48
|
+
"highlight.js": "^11.3.1",
|
|
49
|
+
"jquery": "^3.5.1",
|
|
50
|
+
"js-base64": "^3.6.1",
|
|
51
|
+
"katex": "^0.13.0",
|
|
52
|
+
"lodash": "^4.17.15",
|
|
53
|
+
"photoswipe": "^4.1.2",
|
|
54
|
+
"prismjs": "^1.20.0",
|
|
55
|
+
"sortablejs": "^1.15.0",
|
|
56
|
+
"vue": "^2.6.11",
|
|
57
|
+
"vue-contextmenujs": "^1.4.9",
|
|
58
|
+
"vue-gallery-slideshow": "^1.5.2",
|
|
59
|
+
"vue-photoswipe.js": "^2.0.23",
|
|
60
|
+
"vue-plugin-load-script": "^1.3.6",
|
|
61
|
+
"vuedraggable": "^2.24.3",
|
|
62
|
+
"xss": "^1.0.8"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@babel/plugin-proposal-optional-chaining": "^7.16.5",
|
|
66
|
+
"@vue/cli-plugin-babel": "~4.3.0",
|
|
67
|
+
"@vue/cli-plugin-eslint": "~4.3.0",
|
|
68
|
+
"@vue/cli-plugin-vuex": "^4.0.0",
|
|
69
|
+
"@vue/cli-service": "~4.3.0",
|
|
70
|
+
"babel-eslint": "^10.1.0",
|
|
71
|
+
"eslint": "^6.7.2",
|
|
72
|
+
"eslint-plugin-vue": "^6.2.2",
|
|
73
|
+
"less": "^3.0.4",
|
|
74
|
+
"less-loader": "^5.0.0",
|
|
75
|
+
"less-watch-compiler": "^1.16.3",
|
|
76
|
+
"style-resources-loader": "^1.3.3",
|
|
77
|
+
"vue-cli-plugin-element": "~1.0.1",
|
|
78
|
+
"vue-svg-inline-loader": "^1.4.6",
|
|
79
|
+
"vue-template-compiler": "^2.6.11"
|
|
80
|
+
},
|
|
81
|
+
"repository": {
|
|
82
|
+
"type": "git",
|
|
83
|
+
"url": "git+https://github.com/JX3BOX/jx3box-editor.git"
|
|
84
|
+
},
|
|
85
|
+
"overrides": {
|
|
86
|
+
"stylus": "0.55.0"
|
|
28
87
|
}
|
|
29
|
-
},
|
|
30
|
-
"browserslist": [
|
|
31
|
-
"> 1%",
|
|
32
|
-
"last 2 versions"
|
|
33
|
-
],
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@jx3box/jx3box-common": "^8.7.1",
|
|
36
|
-
"@jx3box/jx3box-data": "^3.8.2",
|
|
37
|
-
"@jx3box/jx3box-emotion": "^1.2.13",
|
|
38
|
-
"@jx3box/jx3box-macro": "^1.0.1",
|
|
39
|
-
"@jx3box/jx3box-talent": "^1.3.3",
|
|
40
|
-
"@jx3box/markdown": "^0.1.5",
|
|
41
|
-
"@tinymce/tinymce-vue": "^3.2.2",
|
|
42
|
-
"axios": "^0.19.2",
|
|
43
|
-
"core-js": "^3.6.5",
|
|
44
|
-
"csslab": "^4.0.3",
|
|
45
|
-
"dayjs": "^1.10.7",
|
|
46
|
-
"element-ui": "^2.13.2",
|
|
47
|
-
"hevue-img-preview": "^5.0.0",
|
|
48
|
-
"highlight.js": "^11.3.1",
|
|
49
|
-
"jquery": "^3.5.1",
|
|
50
|
-
"js-base64": "^3.6.1",
|
|
51
|
-
"katex": "^0.13.0",
|
|
52
|
-
"lodash": "^4.17.15",
|
|
53
|
-
"photoswipe": "^4.1.2",
|
|
54
|
-
"prismjs": "^1.20.0",
|
|
55
|
-
"sortablejs": "^1.15.0",
|
|
56
|
-
"vue": "^2.6.11",
|
|
57
|
-
"vue-contextmenujs": "^1.4.9",
|
|
58
|
-
"vue-gallery-slideshow": "^1.5.2",
|
|
59
|
-
"vue-photoswipe.js": "^2.0.23",
|
|
60
|
-
"vue-plugin-load-script": "^1.3.6",
|
|
61
|
-
"vuedraggable": "^2.24.3",
|
|
62
|
-
"xss": "^1.0.8"
|
|
63
|
-
},
|
|
64
|
-
"devDependencies": {
|
|
65
|
-
"@babel/plugin-proposal-optional-chaining": "^7.16.5",
|
|
66
|
-
"@vue/cli-plugin-babel": "~4.3.0",
|
|
67
|
-
"@vue/cli-plugin-eslint": "~4.3.0",
|
|
68
|
-
"@vue/cli-plugin-vuex": "^4.0.0",
|
|
69
|
-
"@vue/cli-service": "~4.3.0",
|
|
70
|
-
"babel-eslint": "^10.1.0",
|
|
71
|
-
"eslint": "^6.7.2",
|
|
72
|
-
"eslint-plugin-vue": "^6.2.2",
|
|
73
|
-
"less": "^3.0.4",
|
|
74
|
-
"less-loader": "^5.0.0",
|
|
75
|
-
"less-watch-compiler": "^1.16.3",
|
|
76
|
-
"style-resources-loader": "^1.3.3",
|
|
77
|
-
"vue-cli-plugin-element": "~1.0.1",
|
|
78
|
-
"vue-svg-inline-loader": "^1.4.6",
|
|
79
|
-
"vue-template-compiler": "^2.6.11"
|
|
80
|
-
},
|
|
81
|
-
"repository": {
|
|
82
|
-
"type": "git",
|
|
83
|
-
"url": "git+https://github.com/JX3BOX/jx3box-editor.git"
|
|
84
|
-
}
|
|
85
88
|
}
|