-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.35 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "skill-sync",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build",
"format": "prettier --ignore-unknown --write .",
"format:check": "prettier --ignore-unknown --check .",
"lint": "npm run typecheck && eslint . && npm run lint:responsive && npm run lint:colors && npm run lint:i18n",
"lint:colors": "node scripts/check-color-tokens.mjs",
"lint:i18n": "node scripts/check-i18n-literals.mjs",
"lint:knip": "knip",
"lint:responsive": "node scripts/check-responsive-layout.mjs",
"precommit": "lint-staged",
"preview": "vite preview",
"prepare": "node scripts/setup-husky.mjs",
"rust:clippy": "cargo clippy --manifest-path src-tauri/Cargo.toml --all-targets --all-features --locked -- -D warnings",
"rust:fmt:check": "cargo fmt --manifest-path src-tauri/Cargo.toml --all -- --check",
"rust:fmt:check:staged": "node scripts/rust-fmt-staged.mjs",
"rust:precommit": "npm run rust:fmt:check:staged",
"rust:test": "cargo test --manifest-path src-tauri/Cargo.toml --all-features --locked",
"typecheck": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json --noEmit",
"tauri": "tauri"
},
"dependencies": {
"@tanstack/svelte-query": "^6.1.36",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-log": "2.6.0",
"bits-ui": "^2.18.1",
"clsx": "^2.1.1",
"i18next": "^26.3.4",
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@eslint/js": "^10.0.1",
"@internationalized/date": "^3.12.2",
"@lucide/svelte": "^1.24.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.69.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.2",
"@tauri-apps/cli": "^2",
"@types/node": "^24.13.2",
"eslint": "^10.6.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"husky": "8.0.1",
"knip": "^6.26.0",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"svelte-eslint-parser": "^1.8.0",
"svelte-sonner": "^1.1.1",
"tailwindcss": "^4.3.2",
"typescript": "~6.0.2",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"refactor",
"revert",
"test"
]
],
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case",
"upper-case"
]
]
}
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"src/**/*.{ts,svelte}": [
"eslint --fix",
"node scripts/check-responsive-layout.mjs",
"node scripts/check-color-tokens.mjs",
"node scripts/check-i18n-literals.mjs"
],
"src/**/*.css": [
"node scripts/check-responsive-layout.mjs",
"node scripts/check-color-tokens.mjs"
]
}
}