taurify
v0.0.41
Published
Develop, build and distribute a Tauri application without installing Rust.
Downloads
607
Readme
Taurify
Develop, build and distribute a Tauri application without installing Rust.
Usage
Run taurify
on an existing frontend with your preferred package manager.
Configuration
{
"productName": "TaurifyApp",
"identifier": "dev.crabnebula.taurifyapp",
"version": "0.1.0",
"cloudOrgSlug": "crabnebula",
"cloudAppSlug": "taurify",
"app": {
"icon": "logo.png",
"windows": [
{
"title": "Taurify",
"width": 1200,
"height": 800,
"minWidth": 1000,
"minHeight": 800
}
]
}
}
A package.json
file must exist in the current working directory and it must include a script to start your application's development server and a script to build it. The dev script must be either named dev:taurify
, dev
, serve
or start
and the build script must be named either build:taurify
or build
. If those scripts are not set, Taurify defaults to your module bundler's default script.
{
"scripts": {
"dev": "vite dev",
"build": "vite build"
}
}