forked from CubicLauncherDevs/CubicLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "cubiclauncher",
"version": "32.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tauri": "tauri",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"lint-staged": {
"*.{ts,svelte}": [
"eslint --fix --quiet",
"prettier --write"
],
"*.{css,json}": [
"prettier --write"
]
},
"license": "GPL-3.0-only",
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "~2.7.1",
"@tauri-apps/plugin-process": "~2.3.1",
"@tauri-apps/plugin-updater": "~2.10.1",
"dompurify": "^3.4.12",
"marked": "^18.0.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.69.3",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@tauri-apps/cli": "^2.11.4",
"@types/dompurify": "^3.2.0",
"@types/node": "^26.1.1",
"eslint": "^10.7.0",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.5",
"prettier-plugin-svelte": "^4.1.1",
"sass-embedded": "^1.100.0",
"svelte": "^5.56.5",
"svelte-check": "^4.7.3",
"typescript": "~6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5"
}
}