-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.98 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "radianite",
"private": true,
"version": "1.3.1",
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint src-ui scripts *.config.ts eslint.config.js svelte.config.js",
"lint:rust": "cargo clippy --manifest-path src-rs/Cargo.toml -- -D warnings",
"format": "prettier --write \"src-ui/**/*.{svelte,ts,css,json}\" \"scripts/**/*.ts\" \"*.{js,ts,json}\"",
"format:check": "prettier --check \"src-ui/**/*.{svelte,ts,css,json}\" \"scripts/**/*.ts\" \"*.{js,ts,json}\"",
"format:rust:check": "cargo fmt --manifest-path src-rs/Cargo.toml --check",
"build": "bun run check && bun run locales:check && vite build",
"locales:check": "bun scripts/validate-locales.ts",
"preview": "vite preview",
"site:dev": "wrangler dev",
"site:verify": "wrangler deploy --dry-run",
"tauri": "tauri",
"test": "vitest run",
"verify": "bun run verify:frontend && bun run verify:rust",
"verify:frontend": "bun run lint && bun run format:check && bun run test && bun run build",
"verify:rust": "cargo fmt --manifest-path src-rs/Cargo.toml --check && cargo clippy --manifest-path src-rs/Cargo.toml -- -D warnings && cargo test --manifest-path src-rs/Cargo.toml",
"prepare": "husky",
"precommit": "bunx lint-staged && bun run check && bun run format:rust:check && bun run lint:rust"
},
"lint-staged": {
"*.{js,ts,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{css,json,md}": "prettier --write"
},
"dependencies": {
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@fontsource-variable/lexend": "^5.2.11",
"@fontsource/source-code-pro": "^5.2.7",
"@icons-pack/svelte-simple-icons": "^7.2.0",
"@tailwindcss/vite": "^4.3.2",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"bits-ui": "^2.18.1",
"clsx": "^2.1.1",
"dompurify": "^3.4.12",
"i18next": "^25.10.10",
"lucide-svelte": "^1.0.1",
"marked": "^16.4.2",
"svelte-sonner": "^1.1.1",
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.3.2",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tauri-apps/cli": "^2.11.4",
"@testing-library/svelte": "^5.4.2",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"prettier": "^3.9.5",
"prettier-plugin-svelte": "^4.1.1",
"shadcn-svelte": "^1.4.1",
"svelte": "^5.56.4",
"svelte-check": "^4.7.2",
"@typescript/native": "npm:typescript@^7.0.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^7.3.6",
"vitest": "^4.1.10",
"wrangler": "^4.111.0"
}
}