mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-24 12:14:05 +03:00
1bfe2485bb
* apply version updates * tauri 2.0.3 (patch bump) --------- Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com> Co-authored-by: Lucas Nogueira <lucas@tauri.app>
65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "@tauri-apps/cli",
|
|
"version": "2.0.3",
|
|
"description": "Command line interface for building Tauri apps",
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/tauri"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tauri-apps/tauri.git"
|
|
},
|
|
"contributors": [
|
|
"Tauri Programme within The Commons Conservancy"
|
|
],
|
|
"license": "Apache-2.0 OR MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/tauri-apps/tauri/issues"
|
|
},
|
|
"homepage": "https://github.com/tauri-apps/tauri#readme",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main": "main.js",
|
|
"types": "main.d.ts",
|
|
"napi": {
|
|
"name": "cli",
|
|
"triples": {
|
|
"additional": [
|
|
"aarch64-apple-darwin",
|
|
"aarch64-unknown-linux-gnu",
|
|
"aarch64-unknown-linux-musl",
|
|
"armv7-unknown-linux-gnueabihf",
|
|
"x86_64-unknown-linux-musl",
|
|
"i686-pc-windows-msvc",
|
|
"aarch64-pc-windows-msvc"
|
|
]
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "2.18.3",
|
|
"@types/node": "20.16.1",
|
|
"cross-env": "7.0.3",
|
|
"vitest": "^2.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10"
|
|
},
|
|
"bin": {
|
|
"tauri": "./tauri.js"
|
|
},
|
|
"scripts": {
|
|
"artifacts": "napi artifacts",
|
|
"build": "cross-env TARGET=node napi build --platform --profile release-size-optimized",
|
|
"postbuild": "node append-headers.js",
|
|
"build:debug": "cross-env TARGET=node napi build --platform",
|
|
"postbuild:debug": "node append-headers.js",
|
|
"prepublishOnly": "napi prepublish -t npm --gh-release-id $RELEASE_ID",
|
|
"prepack": "cp ../../crates/tauri-schema-generator/schemas/config.schema.json .",
|
|
"version": "napi version",
|
|
"test": "vitest run",
|
|
"tauri": "node ./tauri.js"
|
|
}
|
|
}
|