-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqrepo.json
34 lines (34 loc) · 959 Bytes
/
qrepo.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
{
"name": "Offion",
"author": "Nathanne Isip",
"version": "v0.0.1",
"description": "Debian-based personal browser built with Electron framework, integrating Tor for enhanced privacy and anonymous browsing.",
"git": "https://github.com/nthnn/offion.git",
"scripts": {
"dist": [
"qrepo run build",
"npm exec electron-builder"
],
"clean": [
"rm -rf .parcel-cache app dist"
],
"install": [
"rm -rf node_modules",
"npm install"
],
"build": [
"qrepo run clean",
"npx parcel build index.pug --dist-dir app --public-url . --no-source-maps",
"mv app/index.js app/global.js && sed -i 's/index.js/global.js/' app/index.html",
"mv app/index.css app/global.css && sed -i 's/index.css/global.css/' app/index.html",
"npx coffee --output app/index.js -c index.coffee",
"mkdir -p app/assets",
"cp -r assets app/",
"cp -r icons app/assets/"
],
"dev": [
"qrepo run build",
"npx electron app/index.js"
]
}
}