-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.67 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
{
"name": "exorcist",
"version": "0.1.0",
"description": "Got rogue daemons in your system?",
"main": "src/index.js",
"scripts": {
"start": "electron .",
"compile": "vue-cli-service build ./src/app",
"serve": "npm run compile && npm start",
"clean": "rm -rf dist node_modules src/dist",
"prebuild": "npm run compile",
"build": "electron-builder build src/dist/",
"postcompile": "npm run fetchIcon",
"fetchIcon": "mkdir -p ./src/dist/img && cp build/icon.svg src/dist/img/icon.svg"
},
"dependencies": {
"custom-electron-titlebar": "^3.2.0"
},
"devDependencies": {
"@babel/preset-stage-2": "7.0.0-beta.44",
"@vue/cli-plugin-babel": "^3.0.0-beta.6",
"@vue/cli-plugin-eslint": "^3.0.0-beta.6",
"@vue/cli-service": "^3.0.0-beta.6",
"buefy": "^0.8.8",
"electron": "^7.1.4",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.5.13"
},
"repository": {
"type": "git",
"url": "[email protected]:debloper/exorcist.git"
},
"vue": {
"publicPath": "",
"outputDir": "src/dist"
},
"babel": {
"presets": [
"@vue/app"
]
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue/essential",
"eslint:recommended"
]
},
"build": {
"appId": "io.debs.code.exorcist",
"files": [
"src/**/*",
"!src/app",
"build/**/*"
],
"linux": {
"icon": "icon.svg",
"target": "AppImage"
}
},
"keywords": [
"linux",
"startup",
"daemon",
"services",
"systemd",
"optimize"
],
"author": "Soumya Deb <[email protected]> (https://debs.io)",
"license": "MIT"
}