20 lines
511 B
TOML
20 lines
511 B
TOML
[package]
|
|
name = "nuxtor"
|
|
version = "1.0.0"
|
|
description = "Starter template for Nuxt 3 with Tauri"
|
|
authors = ["NicolaSpadari"]
|
|
license = "MIT"
|
|
repository = "https://github.com/NicolaSpadari/nuxtor"
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1", features = ["notification-all", "shell-all", "system-tray"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[features]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|