mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 08:02:13 +03:00
9f0395ae3c
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "@tauri-apps/cli",
|
|
"version": "1.0.0-rc.2",
|
|
"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 Team <team@tauri-apps.org> (https://tauri.studio)"
|
|
],
|
|
"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": "index.js",
|
|
"types": "index.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"
|
|
]
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "2.4.2",
|
|
"cross-spawn": "7.0.3",
|
|
"fs-extra": "10.0.0",
|
|
"jest": "27.5.1",
|
|
"jest-transform-toml": "1.0.0",
|
|
"prettier": "2.5.1"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10"
|
|
},
|
|
"bin": {
|
|
"tauri": "./tauri.js"
|
|
},
|
|
"scripts": {
|
|
"artifacts": "napi artifacts",
|
|
"build": "napi build --platform --release",
|
|
"build:debug": "napi build --platform",
|
|
"prepublishOnly": "napi prepublish -t npm",
|
|
"test": "jest --runInBand --forceExit --no-cache",
|
|
"version": "napi version",
|
|
"tauri": "node ./tauri.js",
|
|
"format": "prettier --write ./package.json ./tauri.js",
|
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
}
|
|
}
|