-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 873 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
28
29
30
31
32
33
34
35
{
"name": "misskey-tauri",
"private": true,
"version": "1.0.0",
"type": "module",
"packageManager": "pnpm@10.32.1",
"volta": {
"node": "24.14.0",
"pnpm": "10.32.1"
},
"scripts": {
"dev": "vite --host 127.0.0.1 --port 1420",
"build": "tsc -b && vite build",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc -b",
"format": "prettier --check .",
"format:write": "prettier --write .",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tauri-apps/cli": "^2.10.1",
"@types/node": "^24.12.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.1"
}
}