-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.41 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
{
"name": "tauri-solid-tailwind-ts-vite-template",
"version": "2.0.0",
"author": "AR10",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"dev:tauri": "tauri dev",
"build:tauri": "tauri build",
"preview": "vite preview",
"prettier": "prettier src -c",
"prettier:fix": "prettier src -w",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"tauri": "tauri",
"lint": "oxlint && eslint .",
"lint:oxlint": "oxlint",
"lint:eslint": "eslint .",
"lint:fix": "oxlint --fix",
"lint:fast": "oxlint",
"lint:full": "eslint"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "10.0.1",
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@tailwindcss/vite": "4.3.0",
"@types/node": "25.9.1",
"daisyui": "^5.5.20",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-oxlint": "^1.68.0",
"knip": "^6.15.0",
"lightningcss": "1.32.0",
"oxlint": "^1.68.0",
"prettier": "3.8.3",
"prettier-eslint-cli": "8.0.1",
"prettier-plugin-tailwindcss": "0.8.0",
"tailwindcss": "4.3.0",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vite": "8.0.14",
"vite-plugin-solid": "2.11.12"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@kobalte/core": "^0.13.11",
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/api": "2.11.0",
"@tauri-apps/cli": "2.11.2",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-store": "~2",
"@tauri-apps/plugin-window-state": "~2",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"katex": "^0.17.0",
"lucide-solid": "^1.17.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-directive": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-lint": "^10.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"solid-js": "1.9.13",
"solid-motionone": "^1.0.4",
"solid-transition-group": "^0.3.0",
"unist-util-visit": "^5.1.0"
}
}