tauri/tooling/cli/node/package.json
github-actions[bot] 393c774dfd
Apply Version Updates From Current Changes (#4117)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
2022-05-18 12:53:01 -03:00

67 lines
1.8 KiB
JSON

{
"name": "@tauri-apps/cli",
"version": "1.0.0-rc.11",
"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": "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"
]
}
},
"devDependencies": {
"@napi-rs/cli": "2.9.0",
"cross-env": "7.0.3",
"cross-spawn": "7.0.3",
"fs-extra": "10.1.0",
"jest": "28.1.0",
"jest-transform-toml": "1.0.0",
"prettier": "2.6.2"
},
"engines": {
"node": ">= 10"
},
"bin": {
"tauri": "./tauri.js"
},
"scripts": {
"artifacts": "napi artifacts",
"build:release": "cross-env TARGET=node napi build --platform --release",
"build": "cross-env TARGET=node napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"prepack": "cp ../schema.json .",
"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"
}
}