-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
115 lines (115 loc) · 3.29 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "yalier",
"version": "2.2.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"jstest": "babel demo --config-file ./demo/babel.config.json --out-dir build_demo",
"tstest": "tsc -p ./tsconfig_demo.json",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"@codemirror/lang-markdown": "^6.0.0",
"@codemirror/language-data": "^6.1.0",
"@codemirror/theme-one-dark": "^6.0.0",
"@hfelix/electron-localshortcut": "^4.0.1",
"@imengyu/vue3-context-menu": "^1.1.1",
"axios": "^1.2.3",
"bootstrap": "^5.2.2",
"codemirror": "^6.0.1",
"core-js": "^3.8.3",
"diff-match-patch": "^1.0.5",
"electron-store": "^8.1.0",
"element-plus": "^2.2.9",
"fuzzaldrin": "^2.1.0",
"highlight.js": "^11.6.0",
"i18n": "^0.15.1",
"js-beautify": "^1.14.7",
"jspdf": "^2.5.1",
"juice": "^8.1.0",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-emoji": "^2.0.2",
"markdown-it-mathjax3": "^4.3.1",
"markdown-it-multimd-table": "^4.2.0",
"mathjax-full": "^3.2.2",
"mitt": "^3.0.0",
"path-browserify": "^1.0.1",
"popper.js": "^1.16.1",
"prismjs": "^1.29.0",
"rangy": "^1.3.1",
"snabbdom": "^3.5.1",
"turndown": "^7.1.1",
"turndown-plugin-gfm": "^1.0.2",
"uuid": "^8.3.2",
"vue": "^3.2.13",
"vue-codemirror": "^6.0.2",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.3",
"vuex": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@types/diff-match-patch": "^1.0.32",
"@types/js-beautify": "^1.13.3",
"@types/lodash": "^4.14.191",
"@types/markdown-it-emoji": "^2.0.2",
"@types/node": "^18.6.5",
"@types/prismjs": "^1.26.0",
"@types/rangy": "^0.0.34",
"@types/turndown": "^5.0.1",
"@types/uuid": "^8.3.4",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"electron": "13.0.0",
"electron-devtools-installer": "^3.1.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.1",
"sass-loader": "^13.0.2",
"ts-loader": "^9.3.1",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.4",
"typescript": "^4.7.4",
"vue-cli-plugin-electron-builder": "^2.1.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}