-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 848 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 848 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
{
"name": "misskey-tauri",
"private": true,
"version": "1.1.0",
"type": "module",
"packageManager": "npm@11.17.0",
"volta": {
"node": "24.14.0",
"npm": "11.17.0"
},
"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"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.11.3",
"@types/node": "^26.0.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"prettier": "^3.8.4",
"typescript": "~6.0.3",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.0"
}
}