Add publisher/copyright

This commit is contained in:
Gregory Schier
2024-09-16 06:45:42 -07:00
parent a55e27ec20
commit d70c8be85d
3 changed files with 8 additions and 2 deletions

View File

@@ -3,6 +3,10 @@
"private": true, "private": true,
"version": "0.0.0", "version": "0.0.0",
"type": "module", "type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/yaakapp/app.git"
},
"scripts": { "scripts": {
"start": "npm run tauri-dev:desktop", "start": "npm run tauri-dev:desktop",
"tauri-dev:desktop": "tauri dev --no-watch --config ./src-tauri/tauri-dev.conf.json", "tauri-dev:desktop": "tauri dev --no-watch --config ./src-tauri/tauri-dev.conf.json",

View File

@@ -1,11 +1,11 @@
[workspace] [workspace]
members = ["yaak_grpc", "yaak_templates", "yaak_plugin_runtime", "yaak_models"] members = ["yaak_grpc", "yaak_templates", "yaak_plugin_runtime", "yaak_models"]
[package] [package]
name = "yaak-app" name = "yaak-app"
version = "0.0.0" version = "0.0.0"
edition = "2021" edition = "2021"
authors = ["Gregory Schier"]
# Produce a library for mobile support # Produce a library for mobile support
[lib] [lib]

View File

@@ -6,7 +6,9 @@
"beforeBuildCommand": "npm run build", "beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev:js", "beforeDevCommand": "npm run dev:js",
"devUrl": "http://localhost:1420", "devUrl": "http://localhost:1420",
"frontendDist": "../dist" "frontendDist": "../dist",
"publisher": "Yaak",
"copyright": "Yaak"
}, },
"app": { "app": {
"withGlobalTauri": false, "withGlobalTauri": false,