-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
78 lines (78 loc) · 1.88 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
{
"name": "devta",
"main": "main.cjs",
"type": "module",
"private": true,
"version": "0.0.0",
"author": {
"name": "Techrail",
"email": "[email protected]",
"url": "http://github.com/techrail/"
},
"build": {
"appId": "in.techrail.devta",
"productName": "Devta",
"directories": {
"output": "build"
},
"win": {
"icon": "./dist/logo.png"
},
"linux": {
"target": "deb",
"icon": "./logo_256x256.icns",
"category": "Utility"
},
"files": [
"dist/**/*",
"main.cjs",
"preload.js"
],
"publish": {
"provider": "github",
"repo": "devta",
"owner": "techrail",
"releaseType": "draft"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "electron .",
"postinstall": "electron-builder install-app-deps",
"electron:build-linux": "electron-builder --linux --publish always",
"electron:build-windows": "electron-builder --windows --publish always"
},
"dependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"@popperjs/core": "^2.11.8",
"@vuepic/vue-datepicker": "^5.4.0",
"bootstrap": "^5.3.1",
"bootstrap-icons": "^1.10.5",
"cron-parser": "^4.9.0",
"cronstrue": "^2.32.0",
"crypto-js": "^4.1.1",
"electron-is-dev": "^2.0.0",
"esbuild": "^0.19.2",
"highlight.js": "^11.8.0",
"jose": "^4.14.4",
"js2xmlparser": "^5.0.0",
"json-to-pretty-yaml": "^1.2.2",
"jwt-decode": "^3.1.2",
"marked": "^7.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"pinia": "^2.1.6",
"sql-formatter": "^12.2.4",
"sql-query-identifier": "^2.5.0",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"electron": "^26.2.2",
"electron-builder": "^24.6.4",
"vite": "^4.4.9"
}
}