mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-15 23:25:49 +01:00
* Add JSON schema for config file * Fix typo in wails config schema * Update wails.tmpl.json * Update wails.tmpl.json * Add reference to schema in docs Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
13 lines
361 B
JSON
13 lines
361 B
JSON
{
|
|
"$scheme": "https://wails.io/schemas/config.v2.json",
|
|
"name": "{{.ProjectName}}",
|
|
"outputfilename": "{{.BinaryName}}",
|
|
"frontend:install": "npm install",
|
|
"frontend:build": "npm run build",
|
|
"frontend:dev:watcher": "npm run dev",
|
|
"frontend:dev:serverUrl": "auto",
|
|
"author": {
|
|
"name": "{{.AuthorName}}",
|
|
"email": "{{.AuthorEmail}}"
|
|
}
|
|
}
|