-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.32 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.32 KB
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
{
"name": "steady-cms",
"version": "0.1.0",
"description": "Your new static site content management system",
"main": "build/main/main.js",
"scripts": {
"dev": "node scripts/dev-server.js",
"build": "node scripts/build.js && electron-builder",
"build:win": "node scripts/build.js && electron-builder --win",
"build:mac": "node scripts/build.js && electron-builder --mac",
"build:linux": "node scripts/build.js && electron-builder --linux"
},
"repository": "https://github.com/SteadyCMS/desktop",
"author": {
"name": "steady-cms",
"url": "https://github.com/SteadyCMS"
},
"files": [
"*.js",
"build",
"node_modules"
],
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/decompress": "^4.2.4",
"@vitejs/plugin-vue": "^4.0.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"electron": "^25.2.0",
"electron-builder": "^24.2.1",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.21.0",
"ssh2-sftp-client": "^11.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^4.8.4",
"vite": "^4.1.1"
},
"dependencies": {
"@kolirt/vue-modal": "^0.0.14",
"@tiptap/extension-blockquote": "^2.1.7",
"@tiptap/extension-bold": "^2.1.7",
"@tiptap/extension-bubble-menu": "^2.1.7",
"@tiptap/extension-bullet-list": "^2.1.7",
"@tiptap/extension-code": "^2.1.7",
"@tiptap/extension-document": "^2.1.7",
"@tiptap/extension-dropcursor": "^2.1.7",
"@tiptap/extension-floating-menu": "^2.1.7",
"@tiptap/extension-gapcursor": "^2.1.7",
"@tiptap/extension-heading": "^2.1.7",
"@tiptap/extension-history": "^2.1.7",
"@tiptap/extension-horizontal-rule": "^2.1.7",
"@tiptap/extension-italic": "^2.1.7",
"@tiptap/extension-list-item": "^2.1.7",
"@tiptap/extension-ordered-list": "^2.1.7",
"@tiptap/extension-paragraph": "^2.1.7",
"@tiptap/extension-placeholder": "^2.1.7",
"@tiptap/extension-strike": "^2.1.7",
"@tiptap/extension-text": "^2.1.7",
"@tiptap/pm": "^2.1.7",
"@tiptap/vue-3": "^2.1.7",
"@vueup/vue-quill": "^1.2.0",
"decompress": "^4.2.1",
"electron-dl": "^3.5.0",
"mosha-vue-toastify": "^1.0.23",
"open": "^9.1.0",
"pinia": "^2.1.6",
"showdown": "^2.1.0",
"turndown": "^7.1.2",
"vue": "^3.2.47",
"vue-easy-dnd": "^2.1.3",
"vue-router": "^4.2.4"
}
}