tauri/package.json
Tony 17bcec8abe
Some checks failed
Audit / audit-rust (push) Has been cancelled
Audit / audit-js (push) Has been cancelled
bench / bench (map[os:ubuntu-latest target:x86_64-unknown-linux-gnu], nightly) (push) Has been cancelled
covector version or publish / run-integration-tests (macos-latest) (push) Has been cancelled
covector version or publish / run-integration-tests (ubuntu-latest) (push) Has been cancelled
covector version or publish / run-integration-tests (windows-latest) (push) Has been cancelled
deploy schema worker / deploy (push) Has been cancelled
lint rust / clippy (push) Has been cancelled
test `@tauri-apps/cli` / test (macos-latest) (push) Has been cancelled
test `@tauri-apps/cli` / test (ubuntu-latest) (push) Has been cancelled
test `@tauri-apps/cli` / test (windows-latest) (push) Has been cancelled
test `tauri-cli` / test (map[args:--no-default-features --features native-tls-vendored os:windows-latest target:aarch64-pc-windows-msvc]) (push) Has been cancelled
test `tauri-cli` / test (map[os:macos-latest target:x86_64-apple-darwin]) (push) Has been cancelled
test `tauri-cli` / test (map[os:ubuntu-latest target:x86_64-unknown-linux-gnu]) (push) Has been cancelled
test `tauri-cli` / test (map[os:windows-latest target:x86_64-pc-windows-msvc]) (push) Has been cancelled
test core / test (map[args:--all-features key:all], map[command:build cross:false os:macos-latest target:aarch64-apple-ios toolchain:1.77.2]) (push) Has been cancelled
test core / test (map[args:--all-features key:all], map[command:build cross:true os:ubuntu-latest target:aarch64-linux-android toolchain:1.77.2]) (push) Has been cancelled
test core / test (map[args:--all-features key:all], map[command:test cross:false os:macos-14 target:aarch64-apple-darwin toolchain:1.77.2]) (push) Has been cancelled
test core / test (map[args:--all-features key:all], map[command:test cross:false os:ubuntu-latest target:x86_64-unknown-linux-gnu toolchain:1.77.2]) (push) Has been cancelled
test core / test (map[args:--all-features key:all], map[command:test cross:false os:windows-latest target:x86_64-pc-windows-msvc toolchain:1.77.2]) (push) Has been cancelled
test core / test (map[args:--no-default-features key:no-default], map[command:build cross:false os:macos-latest target:aarch64-apple-ios toolchain:1.77.2]) (push) Has been cancelled
test core / test (map[args:--no-default-features key:no-default], map[command:build cross:true os:ubuntu-latest target:aarch64-linux-android toolchain:1.77.2]) (push) Has been cancelled
test core / test (map[args:--no-default-features key:no-default], map[command:test cross:false os:macos-14 target:aarch64-apple-darwin toolchain:1.77.2]) (push) Has been cancelled
test core / test (map[args:--no-default-features key:no-default], map[command:test cross:false os:ubuntu-latest target:x86_64-unknown-linux-gnu toolchain:1.77.2]) (push) Has been cancelled
test core / test (map[args:--no-default-features key:no-default], map[command:test cross:false os:windows-latest target:x86_64-pc-windows-msvc toolchain:1.77.2]) (push) Has been cancelled
Udeps / changes (push) Has been cancelled
covector version or publish / version-or-publish (push) Has been cancelled
Udeps / setup (push) Has been cancelled
Udeps / udeps (push) Has been cancelled
chore(deps): update all js dev dependencies (#11941)
- Update vite to v6
- Update svelte to v5
- Bump nanoid to fix audit
- Align api and cli to both use the same node types version
2024-12-11 12:55:38 +02:00

36 lines
1006 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.4.2"
},
"packageManager": "pnpm@9.9.0",
"pnpm": {
"overrides": {
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5",
"cookie@<0.7.0": ">=0.7.0"
}
}
}