-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
package.json
123 lines (123 loc) · 2.7 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
116
117
118
119
120
121
122
123
{
"name": "laravel-kit",
"description": "A desktop app for Laravel framework",
"version": "2.0.8",
"author": "Tareque Md Hanif <tarequemd.hanif@yahoo.com> (http://tmdh.github.io/)",
"license": "GPLV2",
"private": true,
"main": "dist/main.js",
"scripts": {
"dev:one": "vite",
"dev:two": "node build.js --dev && electron .",
"prod": "vite build && node build.js --prod",
"start": "electron .",
"pack": "electron-builder --dir",
"release": "electron-builder"
},
"dependencies": {
"anser": "2.3.0",
"electron-store": "8.0.1",
"electron-updater": "4.6.1",
"electron-window-state": "^5.0.3",
"execa": "^9.4.0",
"monaco-editor": "0.52.0",
"strip-ansi": "7.0.1",
"tree-kill": "^1.2.2",
"vue": "3.2.29",
"vuex": "4.0.2",
"which": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.0",
"@types/node": "17.0.15",
"@types/which": "^2.0.1",
"@vitejs/plugin-vue": "2.1.0",
"@vue/compiler-sfc": "3.2.29",
"electron": "33.0.0",
"electron-builder": "25.1.8",
"esbuild": "0.14.18",
"eslint": "8.8.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "8.4.0",
"postcss": "8.4.6",
"prettier": "2.5.1",
"tailwindcss": "3.0.24",
"vite": "2.7.13"
},
"repository": {
"type": "git",
"url": "https://github.com/tmdh/laravel-kit.git"
},
"bugs": {
"url": "https://github.com/tmdh/laravel-kit/issues"
},
"prettier": {
"trailingComma": "none",
"printWidth": 200
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2018
}
},
"build": {
"appId": "com.tmdh.laravel-kit",
"productName": "Laravel Kit",
"files": [
"dist/**/*",
"!node_modules${/*}"
],
"asar": false,
"directories": {
"output": "release"
},
"mac": {
"category": "public.app-category.developer-tools",
"darkModeSupport": true,
"publish": {
"provider": "github",
"publishAutoUpdate": false
},
"target": {
"target": "default",
"arch": [
"x64",
"arm64"
]
}
},
"dmg": {
"writeUpdateInfo": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development",
"publish": {
"provider": "github",
"publishAutoUpdate": false
}
},
"deb": {
"depends": [
"libnotify4",
"libxtst6",
"libnss3"
]
}
}
}