-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.39 KB
/
package.json
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": "markd",
"type": "module",
"license": "MIT",
"homepage": "https://markd.it",
"contributors": [
"Pasithea",
"BadDeveloper"
],
"repository": {
"type": "git",
"url": "https://github.com/itzcozi/markd"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --log-level warn --write \"{src/**/*.{ts,js,svelte,html,css},*.{ts,js,svelte,html,css,json,md,xml}}\"",
"check": "svelte-kit sync && svelte-check --workspace /src",
"check:watch": "svelte-kit sync && svelte-check --workspace /src --watch"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.11.1",
"@sveltejs/vite-plugin-svelte": "^4.0.3",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^5.12.0",
"svelte-check": "^4.1.1",
"tailwindcss": "^3.4.16",
"vite": "^5.4.11"
},
"dependencies": {
"@cartamd/plugin-code": "^4.0.6",
"@cartamd/plugin-emoji": "^4.2.1",
"@cartamd/plugin-math": "^4.2.1",
"@cartamd/plugin-slash": "^4.1.2",
"@chevrotain/regexp-to-ast": "^11.0.3",
"carta-md": "^4.6.7",
"carta-plugin-subscript": "^2.0.0",
"cssnano": "^7.0.6",
"isomorphic-dompurify": "^2.19.0",
"katex": "^0.16.15",
"lucide-svelte": "^0.447.0",
"rehype-external-links": "^3.0.0",
"rehype-raw": "^7.0.0",
"remark-github-beta-blockquote-admonitions": "^3.1.1",
"unified": "^11.0.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^0.20.5"
},
"prettier": {
"trailingComma": "all",
"singleQuote": false,
"svelteStrictMode": true,
"svelteAllowShorthand": true,
"svelteIndentScriptAndStyle": true,
"embeddedLanguageFormatting": "auto",
"bracketSameLine": true,
"bracketSpacing": true,
"arrowParens": "always",
"jsxSingleQuote": false,
"svelteSortOrder": "options-scripts-styles-markup",
"quoteProps": "as-needed",
"proseWrap": "always",
"useTabs": false,
"printWidth": 100,
"tabWidth": 2,
"singleAttributePerLine": true,
"semi": true,
"endOfLine": "lf",
"experimentalTernaries": true,
"htmlWhitespaceSensitivity": "css",
"filepath": "{src/**/*.{ts,js,svelte,html,css},*.{ts,js,svelte,html,css,json,md,xml}}",
"plugins": [
"prettier-plugin-svelte"
]
}
}