forked from kmrifat/pywebview-vue-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.29 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
{
"name": "pywebview_vue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"frontend:dev": "parcel build src/index.html --public-url . -d gui",
"clean": "run-script-os",
"clean:default": "rm -rf dist 2>/dev/null; rm -rf gui 2>/dev/null; rm -rf build 2>/dev/null; ",
"clean:windows": "if exist dist rd /S /Q dist & if exist build rd /S /Q build & if exist gui rd /S /Q gui",
"dev": "parcel serve src/index.html",
"init": "npm install && run-script-os",
"init:linux": "virtualenv -p python3 venv-pywebview && if [[ -z \\\"${KDE_FULL_SESSION}\\\" ]]; then npm run init:qt5; else npm run init:gtk; fi",
"init:gtk": "sudo apt install libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0 && ./venv-pywebview/bin/pip install pycairo pygobject -r requirements.txt",
"start": "npm run frontend:dev && run-script-os",
"start:default": "./venv-pywebview/bin/python src/index.py",
"start:windows": ".\\venv-pywebview\\Scripts\\python src\\index.py"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"@vue/component-compiler-utils": "^3.2.0",
"parcel-bundler": "^1.12.5",
"run-script-os": "^1.1.6"
}
}