mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
* chore: cleanup unnecessary scripts and files - Removed `.cargo/config` and `__TAURI_WORKSPACE__` workaround - Removed husky and precommit hooks - Remove unecessary script files - Moved `.scripts/covector/sync-cli-metadata.js` to `.scripts/ci/sync-cli-metadata.js` - Moved `app-icon.png` to `.github/icon.png` - Enhanced has-diff.sh script to output which files are modified * lock file * bring back __TAURI_WORKSPACE__ * add change file --------- Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
24 lines
654 B
JSON
24 lines
654 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 . --config .prettierrc --ignore-path .prettierignore",
|
|
"format:check": "prettier --check . --config .prettierrc --ignore-path .prettierignore",
|
|
"eslint:check": "pnpm run -r eslint:check",
|
|
"ts:check": "pnpm run -r ts:check"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.3.2"
|
|
},
|
|
"packageManager": "pnpm@9.7.1"
|
|
}
|