-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 652 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 652 Bytes
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
{
"name": "JotPad",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"clean": "turbo run clean",
"shadcn": "pnpm --filter @repo/ui shadcn",
"tauri": "pnpm --filter native tauri"
},
"devDependencies": {
"prettier": "^3.5.3",
"turbo": "^2.5.2",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@tauri-apps/plugin-log": "~2.4.0",
"@tauri-apps/plugin-sql": "~2.2.0"
}
}