-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.24 KB
/
package.json
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
{
"name": "monorepo",
"version": "0.7.0",
"type": "module",
"private": true,
"packageManager": "pnpm@9.12.1",
"scripts": {
"build": "pnpm run -F \"./packages/*\" build",
"build:docs": "pnpm run -F docs build && pnpm run -F \"./packages/*\" typedoc",
"clippy": "cargo clippy",
"dev": "cargo tauri dev",
"dev:async": "cargo tauri dev --features unstable-async",
"docs:cargo": "cargo doc -p tauri-* --open --no-deps",
"docs:vite": "pnpm run -F docs dev --open",
"format": "prettier . --write && cargo fmt --all",
"lint": "eslint . --config eslint.config.js --cache && cargo clippy",
"lint-fix": "eslint . --config eslint.config.js --fix",
"type-check": "pnpm run -r type-check"
},
"devDependencies": {
"@tb-dev/eslint-config": "^5.4.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.7.5",
"autoprefixer": "^10.4.20",
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13",
"tslib": "^2.7.0",
"typedoc": "^0.26.9",
"typedoc-plugin-mdn-links": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.4",
"vue-tsc": "^2.1.6"
}
}