mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-24 04:03:52 +03:00
62b52f60a2
* fix(cli/add): use `>=` for npm and `~` for other package managers closes #10906 * headers * fix audit * fix headers
29 lines
823 B
JSON
29 lines
823 B
JSON
{
|
|
"name": "tauri-workspace",
|
|
"version": "0.0.0",
|
|
"license": "Apache-2.0 OR MIT",
|
|
"private": true,
|
|
"contributors": [
|
|
"Tauri Programme within The Commons Conservancy"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tauri-apps/tauri.git"
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"eslint:check": "pnpm run -r eslint:check",
|
|
"ts:check": "pnpm run -r ts:check",
|
|
"build": "pnpm run -r build",
|
|
"build:api": "pnpm run --filter \"@tauri-apps/api\" build",
|
|
"build:cli": "pnpm run --filter \"@tauri-apps/cli\" build",
|
|
"build:cli:debug": "pnpm run --filter \"@tauri-apps/cli\" build:debug",
|
|
"test": "pnpm run -r build"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.3.3"
|
|
},
|
|
"packageManager": "pnpm@9.9.0"
|
|
}
|