forked from yuchenyang1994/godot-love-wechat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.61 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
{
"name": "pywebview-with-vite-react",
"version": "0.0.0",
"description": "",
"scripts": {
"build": "npm run clean && npm run build-frontend && run-script-os",
"build:macos": "./venv/bin/python build-macos.py py2app",
"build:windows": ".\\venv\\Scripts\\pyinstaller build-windows.spec",
"build:linux": "./venv/bin/pyinstaller build-linux.spec",
"build-frontend": "cd frontend && npm run build",
"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": "cd frontend && npm run dev",
"init": "npm install && npm run init-frontend",
"init-frontend": "cd frontend && npm install",
"start": "npm run build-frontend && run-script-os",
"start:windows": ".\\venv\\Scripts\\python backend\\index.py",
"start:default": "./venv/bin/python backend/index.py"
},
"repository": {
"type": "git",
"url": "https://github.com/ShijiMi-Soup/pywebview-with-vite-react"
},
"keywords": [
"pywebview",
"vite",
"react",
"python",
"javascript",
"typescript"
],
"author": "Takahiro Yoshikawa",
"license": "BSD-3-Clause",
"licenses": [
{
"type": "BSD-3-Clause",
"url": "https://opensource.org/licenses/BSD-3-Clause"
},
{
"type": "BSD-3-Clause",
"url": "https://opensource.org/licenses/BSD-3-Clause",
"description": "This project includes code from a project by Roman."
}
],
"devDependencies": {
"run-script-os": "^1.1.6"
}
}