-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.63 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
{
"name": "paper",
"version": "1.0.0",
"description": "Quick Start Templates for Vite + Vue 3 + Electron",
"homepage": "https://github.com/mrsai/Paper",
"author": "sai <[email protected]>",
"license": "MIT",
"main": "dist/main/index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mrsai/Paper.git"
},
"bugs": {
"url": "https://github.com/mrsai/Paper/issues"
},
"scripts": {
"dev": "vite",
"dev:debug": "vite -d",
"dev:debug:force": "vite -d --force",
"build": "npm run build:pre && electron-builder -wml",
"build:pre": "npm run format:fix && vue-tsc --noEmit && vite build",
"build:dir": "npm run build:pre && electron-builder --dir",
"build:mac": "npm run build:pre && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --mac",
"build:linux": "npm run build:pre && electron-builder --linux",
"build:win": "npm run build:pre && electron-builder --windows",
"lint": "eslint --ext .js,.ts,.vue -f ./node_modules/eslint-friendly-formatter src",
"lint:fix": "eslint --ext .js,.ts,.vue -f ./node_modules/eslint-friendly-formatter --fix src",
"format": "prettier .",
"format:fix": "prettier . --write"
},
"engines": {
"node": ">=16.0.0"
},
"fileAssociations": [
{
"ext": "md",
"name": "Markdown",
"description": "Paper Markdown File",
"role": "Editor"
},
{
"ext": "rt",
"name": "RichText",
"description": "Paper RichText File, It is Html",
"role": "Editor"
}
],
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@icon-park/vue-next": "^1.4.2",
"@imengyu/vue3-context-menu": "^1.2.3",
"@mdi/font": "^7.1.96",
"@milkdown/core": "^7.2.3",
"@milkdown/ctx": "^7.2.3",
"@milkdown/plugin-clipboard": "^7.2.3",
"@milkdown/plugin-history": "^7.2.3",
"@milkdown/plugin-listener": "^7.2.3",
"@milkdown/plugin-slash": "^7.2.3",
"@milkdown/plugin-tooltip": "^7.2.3",
"@milkdown/preset-commonmark": "^7.2.3",
"@milkdown/preset-gfm": "^7.2.3",
"@milkdown/prose": "^7.2.3",
"@milkdown/theme-nord": "^7.2.3",
"@milkdown/transformer": "^7.2.3",
"@milkdown/utils": "^7.2.1",
"@milkdown/vue": "^7.2.3",
"@prosemirror-adapter/vue": "^0.2.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vueuse/core": "^9.13.0",
"autoprefixer": "^10.4.14",
"electron": "^23.2.1",
"electron-builder": "^23.3.3",
"electron-updater": "^5.3.0",
"element-plus": "^2.3.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.9.0",
"pinia": "^2.0.32",
"postcss": "^8.4.24",
"prettier": "^2.8.4",
"sass": "^1.60.0",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.15.2",
"unplugin-vue-components": "^0.24.1",
"uuid": "^9.0.0",
"vite": "^4.1.4",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-electron-renderer": "^0.12.1",
"vite-plugin-eslint": "^1.8.1",
"vue": "^3.2.47",
"vue-eslint-parser": "^9.1.0",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vue-tsc": "^1.2.0"
}
}