-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.7 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
59
60
61
62
63
{
"name": "cubiclauncher",
"version": "34.0.1",
"description": "",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test:frontend": "bun test --conditions=browser ./tests/frontend",
"test:rust": "cargo test --workspace",
"test:all": "bun run test:frontend && bun run test:rust",
"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.3",
"@tauri-apps/plugin-process": "~2.3.1",
"@tauri-apps/plugin-updater": "~2.10.1",
"dompurify": "^3.4.14",
"marked": "^18.0.11",
"skin3d": "^0.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.70.3",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@tauri-apps/cli": "^2.11.4",
"@types/dompurify": "^3.2.0",
"@types/node": "^26.4.1",
"@types/three": "0.185.4",
"eslint": "^10.10.0",
"eslint-plugin-svelte": "^3.23.0",
"globals": "^17.12.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"sass-embedded": "^1.104.0",
"svelte": "^5.57.0",
"svelte-check": "^4.7.6",
"typescript": "~6.0.3",
"typescript-eslint": "^8.69.0",
"vite": "^8.2.2"
}
}