-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.65 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "monorepo",
"type": "module",
"private": true,
"packageManager": "pnpm@10.30.1",
"scripts": {
"build": "pnpm run build:shared && pnpm run build:package",
"build:docs": "pwsh scripts/build-docs.ps1",
"build:shared": "pnpm run -F @tauri-store/shared build",
"build:package": "pnpm run -F \"tauri-store\" -F \"./packages/plugin-*\" build",
"cli": "cargo install --path ./crates/tauri-store-cli --force --profile release-cli",
"clippy": "cargo clippy --workspace",
"codegen": "cargo run -p tauri-store-cli -- codegen",
"dev": "cargo tauri dev",
"docs:crate": "cargo +nightly doc -p tauri-* --open --no-deps --lib --all-features",
"docs:package": "pnpm run -F docs dev --host",
"eslint": "eslint . --config eslint.config.ts",
"example": "cargo run -p tauri-store-cli -- example",
"format": "prettier . --write && cargo fmt --all",
"playground": "cargo run -p tauri-store-cli -- playground",
"sync": "pnpm run --recursive --if-present sync",
"test:crate": "pwsh scripts/test.ps1",
"type-check": "pnpm run --recursive --if-present type-check",
"update": "pwsh scripts/update.ps1"
},
"devDependencies": {
"@tb-dev/eslint-config": "^9.0.0",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.0.1",
"prettier": "^3.8.1",
"prettier-plugin-css-order": "^2.2.0",
"prettier-plugin-svelte": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.17",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
}
}