tauri/package.json
Lucas Fernandes Nogueira 3e9fd0665c
fix: npm audit (#11243)
the audit failed, so the 2.0.2 release is failing. I'm also adding the latest merged change to the 2.0.2 release in this change so we're in sync in the changelog.
2024-10-07 19:23:28 +03:00

36 lines
1003 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 test",
"example:api:dev": "pnpm run --filter \"api\" tauri dev"
},
"devDependencies": {
"prettier": "^3.3.3"
},
"packageManager": "pnpm@9.9.0",
"pnpm": {
"overrides": {
"rollup@>=4.0.0 <4.22.4": ">=4.22.4",
"cookie@<0.7.0": ">=0.7.0"
}
}
}